diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d3a8b5b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ffb52ab --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text eol=lf + +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated + +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..4f660e4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,50 @@ +name: CI + +on: + push: + branches: ["*"] + paths: + - grammar.js + - src/** + - test/** + - bindings/** + - binding.gyp + pull_request: + paths: + - grammar.js + - src/** + - test/** + - bindings/** + - binding.gyp + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +jobs: + test: + name: Test parser + runs-on: ${{matrix.os}} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-14] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v1 + - name: Set up examples + run: |- + git clone https://github.com/starkware-libs/cairo examples/compiler --single-branch --depth=1 --filter=blob:none + git clone https://github.com/OpenZeppelin/cairo-contracts examples/openzeppelin --single-branch --depth=1 --filter=blob:none + git clone https://github.com/keep-starknet-strange/alexandria examples/alexandria --single-branch --depth=1 --filter=blob:none + - name: Run tests + uses: tree-sitter/parser-test-action@v2 + with: + test-rust: ${{runner.os == 'Linux'}} + - name: Parse examples + uses: tree-sitter/parse-action@v4 + with: + files: examples/**/*.cairo + invalid-files: examples/compiler/crates/cairo-lang-parser/src/parser_test_data/cairo_test_files/*.cairo diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 0000000..347a9cc --- /dev/null +++ b/.github/workflows/fuzz.yml @@ -0,0 +1,21 @@ +name: Fuzz Parser + +on: + push: + branches: [master] + paths: + - src/scanner.c + pull_request: + paths: + - src/scanner.c + +jobs: + fuzz: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Run fuzzer + uses: tree-sitter/fuzz-action@v4 + with: + tree-sitter-version: v0.22.2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..14632b7 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,25 @@ +name: Lint + +on: + push: + branches: [master] + paths: + - grammar.js + pull_request: + paths: + - grammar.js + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + cache: npm + - name: Install modules + run: npm ci --legacy-peer-deps + - name: Run ESLint + run: npm run lint diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27fc43f --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Rust artifacts +Cargo.lock +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ +*.tgz + +# Swift artifacts +.build/ + +# Go artifacts +go.sum +_obj/ + +# Python artifacts +.venv/ +dist/ +*.egg-info +*.whl + +# C artifacts +*.a +*.so +*.so.* +*.dylib +*.dll +*.pc + +# Example dirs +/examples/*/ + +# Grammar volatiles +*.wasm +*.obj +*.o diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b9e9c39 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "tree-sitter-cairo" +description = "Cairo grammar for tree-sitter" +version = "0.0.1" +license = "MIT" +readme = "README.md" +keywords = ["incremental", "parsing", "tree-sitter", "cairo"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-cairo" +edition = "2021" +autoexamples = false + +build = "bindings/rust/build.rs" +include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = ">=0.22.6" + +[build-dependencies] +cc = "1.0.87" diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..404971b --- /dev/null +++ b/Makefile @@ -0,0 +1,112 @@ +VERSION := 0.0.1 + +LANGUAGE_NAME := tree-sitter-cairo + +# repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) + +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) +endif +endif + +TS ?= tree-sitter + +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) + +# flags +ARFLAGS ?= rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# OS-specific bits +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), + endif + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED := $(LINKSHARED)-shared -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) + endif + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(PARSER): $(SRC_DIR)/grammar.json + $(TS) generate --no-bindings $^ + +install: all + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test + +.PHONY: all install uninstall clean test diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..c1587e7 --- /dev/null +++ b/Package.swift @@ -0,0 +1,47 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterCairo", + products: [ + .library(name: "TreeSitterCairo", targets: ["TreeSitterCairo"]), + ], + dependencies: [], + targets: [ + .target(name: "TreeSitterCairo", + path: ".", + exclude: [ + "Cargo.toml", + "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", + "package.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", + ], + sources: [ + "src/parser.c", + // NOTE: if your language has an external scanner, add it here. + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")]) + ], + cLanguageStandard: .c11 +) diff --git a/binding.gyp b/binding.gyp new file mode 100644 index 0000000..6cb83f0 --- /dev/null +++ b/binding.gyp @@ -0,0 +1,30 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_cairo_binding", + "dependencies": [ + " + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_cairo(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "cairo"); + auto language = Napi::External::New(env, tree_sitter_cairo()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; +} + +NODE_API_MODULE(tree_sitter_cairo_binding, Init) diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 0000000..efe259e --- /dev/null +++ b/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 0000000..6657bcf --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,7 @@ +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/bindings/python/tree_sitter_cairo/__init__.py b/bindings/python/tree_sitter_cairo/__init__.py new file mode 100644 index 0000000..f17e96d --- /dev/null +++ b/bindings/python/tree_sitter_cairo/__init__.py @@ -0,0 +1,5 @@ +"Cairo grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/bindings/python/tree_sitter_cairo/__init__.pyi b/bindings/python/tree_sitter_cairo/__init__.pyi new file mode 100644 index 0000000..5416666 --- /dev/null +++ b/bindings/python/tree_sitter_cairo/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/bindings/python/tree_sitter_cairo/binding.c b/bindings/python/tree_sitter_cairo/binding.c new file mode 100644 index 0000000..ef5d4b1 --- /dev/null +++ b/bindings/python/tree_sitter_cairo/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_cairo(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_cairo()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/bindings/python/tree_sitter_cairo/py.typed b/bindings/python/tree_sitter_cairo/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs new file mode 100644 index 0000000..50aac78 --- /dev/null +++ b/bindings/rust/build.rs @@ -0,0 +1,22 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.std("c11").include(src_dir); + + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // NOTE: if your language uses an external scanner, uncomment this block: + /* + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ + + c_config.compile("tree-sitter-cairo"); +} diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs new file mode 100644 index 0000000..58376d6 --- /dev/null +++ b/bindings/rust/lib.rs @@ -0,0 +1,54 @@ +//! This crate provides Cairo language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [language][language func] function to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = r#" +//! "#; +//! let mut parser = tree_sitter::Parser::new(); +//! parser.set_language(&tree_sitter_cairo::language()).expect("Error loading Cairo grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter::Language; + +extern "C" { + fn tree_sitter_cairo() -> Language; +} + +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_cairo() } +} + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); +pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); +pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); +// pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::language()) + .expect("Error loading Cairo grammar"); + } +} diff --git a/bindings/swift/TreeSitterCairo/cairo.h b/bindings/swift/TreeSitterCairo/cairo.h new file mode 100644 index 0000000..d683652 --- /dev/null +++ b/bindings/swift/TreeSitterCairo/cairo.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_CAIRO_H_ +#define TREE_SITTER_CAIRO_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_cairo(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_CAIRO_H_ diff --git a/grammar.js b/grammar.js new file mode 100644 index 0000000..25f6eb7 --- /dev/null +++ b/grammar.js @@ -0,0 +1,1080 @@ +const PREC = { + call: 15, + field: 14, + try: 13, + unary: 12, + multiplicative: 10, + additive: 9, + shift: 8, + bitand: 7, + bitxor: 6, + bitor: 5, + comparative: 4, + and: 3, + or: 2, + assign: 0, +}; +const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = ['+', '-', '*', '/', '%', '^', '!', '~', '&', '|', '&&', '||', '<<', '>>', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '=', '==', '!=', '>', '<', '>=', '<=', '@', '..', '_', '.', ',', ';', ':', '::', '->', '=>', '#', '?', +]; + +const integerTypes = ['u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'u128', 'i128', 'usize', +]; +const primitiveTypes = integerTypes.concat(['bool', 'ByteArray', 'felt252']); +module.exports = grammar({ + name: 'cairo', + + extras: ($) => [/\s/, $.line_comment], + conflicts: ($) => [ + [$._type, $._pattern], + [$.unit_type, $.tuple_pattern], + [$.scoped_identifier, $.scoped_type_identifier], + [$._literal, $.negative_literal], + [$.negative_literal, $._non_delim_token], + [$.array_expression], + ], + inline: ($) => [ + $._path, + $._type_identifier, + $._field_identifier, + $._non_special_token, + $._declaration_statement, + $._reserved_identifier, + ], + supertypes: ($) => [ + $.expression, + $._type, + $._literal, + $._literal_pattern, + $._declaration_statement, + $._pattern, + ], + rules: { + source_file: ($) => repeat($._statement), + + _statement: ($) => choice($.expression_statement, $._declaration_statement), + + _declaration_statement: ($) => + choice( + $.const_item, + $.macro_invocation, + $.empty_statement, + $.attribute_item, + $.inner_attribute_item, + $.mod_item, + $.struct_item, + $.enum_item, + $.type_item, + $.external_function_item, + $.function_item, + $.function_signature_item, + $.impl_item, + $.trait_item, + $.let_declaration, + $.use_declaration, + $.associated_type, + ), + // Declaration section + + // For example here in: + // trait A { + // type B; + // fn a(a: u32) -> u32; + // fn b(b: bool) -> bool; + // } + // The declaration list would be `{ type B; fn a(a: u32) -> u32; fn b(b: bool) -> bool; }`, + declaration_list: ($) => seq('{', repeat($._declaration_statement), '}'), + + // `impl Foo of FooTrait<...> { } + // `impl Bar of BarTrait;` + impl_item: ($) => + seq( + optional($.visibility_modifier), + 'impl', + $.identifier, + field('type_parameters', optional($.type_parameters)), + 'of', + $._type, + choice(field('body', $.declaration_list), ';'), + ), + + // trait A { + // type B; + // fn a(a: u32) -> u32; + // fn b(b: bool) -> bool; + // } + trait_item: ($) => + seq( + optional($.visibility_modifier), + 'trait', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + choice(field('body', $.declaration_list), ';'), + ), + // trait A { + // type B; + // } + associated_type: ($) => + seq( + 'type', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + ';', + ), + + // const FOO: felt252 = 1; + const_item: ($) => + seq( + optional($.visibility_modifier), + 'const', + field('name', $.identifier), + ':', + field('type', $._type), + optional(seq('=', field('value', $.expression))), + ';', + ), + + // array![] + macro_invocation: ($) => + seq( + field( + 'macro', + choice($.scoped_identifier, $.identifier, $._reserved_identifier), + ), + '!', + alias($.delim_token_tree, $.token_tree), + ), + + empty_statement: (_) => ';', + + // #[derive(Debug)] + attribute_item: ($) => seq('#', '[', $.attribute, ']'), + + // #![deny(missing_docs)] + inner_attribute_item: ($) => seq('#', '!', '[', $.attribute, ']'), + // for example in #[derive(Debug)], the attribute would be `derive(Debug)` + attribute: ($) => + seq( + $._path, + optional( + choice( + seq('=', field('value', $.expression)), + field('arguments', alias($.delim_token_tree, $.token_tree)), + ), + ), + ), + + // mod abc; + mod_item: ($) => + seq( + optional($.visibility_modifier), + 'mod', + field('name', $.identifier), + choice(';', field('body', $.declaration_list)), + ), + + // struct Foo { bar: u32 } + struct_item: ($) => + seq( + optional($.visibility_modifier), + 'struct', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + choice(seq(field('body', $.field_declaration_list)), ';'), + ), + + // enum Direction { Left, Right: u32 }; + enum_item: ($) => + seq( + optional($.visibility_modifier), + 'enum', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + field('body', $.enum_variant_list), + ), + + // for example in enum Direction { Left, Right: u32 } it would be `{ Left, Right: u32 }` + enum_variant_list: ($) => + seq( + '{', + sepBy(',', seq(repeat($.attribute_item), $.enum_variant)), + optional(','), + '}', + ), + + // for example in enum Direction { Left, Right: u32 } it would be `Left` and `Right: u32` + enum_variant: ($) => + choice( + seq(optional($.visibility_modifier), field('variant', $.identifier)), + field('variant', $.field_declaration), + ), + // struct and enum helper + // for example in struct Foo { bar: u32 } it would be `{ bar: u32 }` + field_declaration_list: ($) => + seq( + '{', + sepBy(',', seq(repeat($.attribute_item), $.field_declaration)), + optional(','), + '}', + ), + // struct and enum helper + // for example in struct Foo { bar: u32 } it would be bar: u32 + field_declaration: ($) => + seq( + optional($.visibility_modifier), + field('name', $._field_identifier), + ':', + field('type', $._type), + ), + + // impl HashBool, +Drop> = into_felt252_based::HashImpl; + // pub type usize = u32; + type_item: ($) => + choice( + $.extern_type, + seq( + optional($.visibility_modifier), + choice('type', 'impl'), + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + '=', + choice(field('type', $._type)), + ';', + ), + ), + + // pub extern type Poseidon; + extern_type: ($) => + seq( + optional($.visibility_modifier), + $.extern, + 'type', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + ';', + ), + + // pub extern fn hades_permutation( + // s0: felt252, s1: felt252, s2: felt252 + // ) -> (felt252, felt252, felt252) implicits(Poseidon) nopanic; + external_function_item: ($) => + seq(optional($.visibility_modifier), $.extern, $.function, ';'), + + // fn default() -> HashState { + // PoseidonTrait::new() + // } + function_item: ($) => + seq(optional($.visibility_modifier), $.function, field('body', $.block)), + + // For example here in: + // trait A { + // fn a(a: u32) -> u32; + // } it would be `fn a(a: u32) -> u32;` + function_signature_item: ($) => + seq(optional($.visibility_modifier), $.function, ';'), + + // Helper for function definition + function: ($) => + seq( + 'fn', + field('name', $.identifier), + field('type_parameters', optional($.type_parameters)), + field('parameters', $.parameters), + optional(seq('->', field('return_type', $._type))), + field( + 'implicit_arguments', + optional(seq('implicits', sepBy(',', $._type))), + ), + optional($.nopanic), + ), + + // let a = 1; + let_declaration: ($) => + seq( + 'let', + optional($.mutable_specifier), + field('pattern', $._pattern), + optional(seq(':', field('type', $._type))), + optional(seq('=', field('value', $.expression))), + ';', + ), + + // pub use abc::def; + use_declaration: ($) => + seq( + optional($.visibility_modifier), + 'use', + field('argument', $._use_clause), + ';', + ), + + // helper for use declaration + _use_clause: ($) => + choice( + $._path, + $.use_as_clause, + $.use_list, + $.scoped_use_list, + $.use_wildcard, + ), + // The following will consider the base example: use abc::def::{a as a, b, c::*}; + // abc::def::{a as a, b, c::*} + scoped_use_list: ($) => + seq(field('path', optional($._path)), '::', field('list', $.use_list)), + + // {a as a, b, c::*} + use_list: ($) => + seq('{', sepBy(',', choice($._use_clause)), optional(','), '}'), + + // a as a + use_as_clause: ($) => + seq(field('path', $._path), 'as', field('alias', $.identifier)), + + // c::* + use_wildcard: ($) => seq(optional(seq($._path, '::')), '*'), + + // for example in fn a(x: u32, y: u32) {} it would be (x: u32, y: u32) + parameters: ($) => + seq( + '(', + sepBy( + ',', + seq(optional($.attribute_item), choice($.parameter, '_', $._type)), + ), + optional(','), + ')', + ), + + // x: u32 + parameter: ($) => + seq( + optional(choice($.ref_specifier, $.mutable_specifier)), + field('pattern', $._pattern), + ':', + field('type', $._type), + ), + + // Types section + _type: ($) => + choice( + $.generic_type, + $.generic_type_with_turbofish, + $.scoped_type_identifier, + $.snapshot_type, + $.tuple_type, + $.unit_type, + $.array_type, + $._type_identifier, + $.macro_invocation, + alias(choice(...primitiveTypes), $.primitive_type), + ), + + // Helper + _path: ($) => + choice( + alias(choice(...primitiveTypes), $.identifier), + $.super, + $.identifier, + $.scoped_identifier, + $._reserved_identifier, + ), + + // for example in trait A {} it would be `` + type_parameters: ($) => + prec( + 1, + seq( + '<', + sepBy1( + ',', + seq( + repeat($.attribute_item), + choice( + $.generic_type, + $._type_identifier, + $.generic_type_with_turbofish, + $._type_identifier, + $.constrained_type_parameter, + $.const_parameter, + ), + ), + ), + optional(','), + '>', + ), + ), + // for example in pub extern fn const_as_box() -> Box nopanic; + // it would be `const SEGMENT_ID: felt252` + const_parameter: ($) => + seq('const', field('name', $.identifier), ':', field('type', $._type)), + + // for example in impl ArraySerde, impl TDrop: Drop> of Serde> {} it would be + // `+Serde` and `impl TDrop: Drop` + constrained_type_parameter: ($) => + choice( + seq( + field('left', seq('impl', $._type_identifier, ':')), + field('bound', $._type), + ), + seq( + choice('+', '-'), + choice( + $.generic_type, + $._type_identifier, + $.generic_type_with_turbofish, + ), + ), + ), + // in let a: Array; it would be `Array` + generic_type: ($) => + prec( + 1, + seq( + field( + 'type', + choice( + $._type_identifier, + $._reserved_identifier, + $.scoped_type_identifier, + ), + ), + // "::", + field('type_arguments', $.type_arguments), + ), + ), + + // in let a: Array::; it would be `Array::` + generic_type_with_turbofish: ($) => + seq( + field( + 'type', + choice( + $._type_identifier, + $._reserved_identifier, + $.scoped_identifier, + ), + ), + '::', + field('type_arguments', $.type_arguments), + ), + // for example in let a: [u8; 32]; it would be `[u8; 32]` + array_type: ($) => + seq( + '[', + field('element', $._type), + optional(seq(';', field('length', $.expression))), + ']', + ), + + // Helper + delim_token_tree: ($) => + choice( + seq('(', repeat($._delim_tokens), ')'), + seq('[', repeat($._delim_tokens), ']'), + seq('{', repeat($._delim_tokens), '}'), + ), + // Helper + _delim_tokens: ($) => + choice($._non_delim_token, alias($.delim_token_tree, $.token_tree)), + + // Matches non-delimiter tokens common to both macro invocations and + // definitions. + _non_special_token: ($) => + choice( + $._literal, + $.identifier, + $.mutable_specifier, + $.super, + alias(choice(...primitiveTypes), $.primitive_type), + prec.right(repeat1(choice(...TOKEN_TREE_NON_SPECIAL_PUNCTUATION))), + 'break', + 'const', + 'continue', + 'default', + 'enum', + 'fn', + 'if', + 'impl', + 'extern', + 'nopanic', + 'let', + 'loop', + 'match', + 'mod', + 'pub', + 'return', + 'static', + 'struct', + 'trait', + 'type', + 'use', + 'while', + ), + // Section - Patterns + + _pattern: ($) => + choice( + $._literal_pattern, + alias(choice(...primitiveTypes), $.identifier), + $.identifier, + $.scoped_identifier, + $.tuple_pattern, + $.struct_pattern, + $._reserved_identifier, + $.mut_pattern, + $.or_pattern, + $.slice_pattern, + $.macro_invocation, + $.tuple_enum_pattern, + '_', + ), + // for example in let (a, b) = c; it would be `(a, b)` + tuple_pattern: ($) => seq('(', sepBy(',', $._pattern), optional(','), ')'), + + // for example in let [a, b] = c; it would be `[a, b]` + slice_pattern: ($) => seq('[', sepBy(',', $._pattern), optional(','), ']'), + + // for example in let Foo {a, b} = c; it would be `Foo {a, b}` + struct_pattern: ($) => + seq( + field('type', choice($._type_identifier, $.scoped_type_identifier)), + '{', + sepBy(',', $.field_pattern), + optional(','), + '}', + ), + // for example in let Foo { a: bar, b: baz } = c; it would be `a: bar` and `b: baz` + field_pattern: ($) => + seq( + optional($.mutable_specifier), + choice( + field('name', alias($.identifier, $.shorthand_field_identifier)), + seq( + field('name', $._field_identifier), + ':', + field('pattern', $._pattern), + ), + ), + ), + + // for example in let a = Foo { a: 1, b: 2}; it would be `{ a: 1, b: 2}` + field_initializer_list: ($) => + seq( + '{', + sepBy(',', choice($.shorthand_field_initializer, $.field_initializer, $.base_field_initializer)), + optional(','), + '}', + ), + // for example in let a = Foo { a: 1, b}; it would be `b` + shorthand_field_initializer: ($) => + seq(repeat($.attribute_item), $.identifier), + + // for example in let a = Foo { a: 1, b}; it would be `a: 1` + field_initializer: ($) => + seq( + repeat($.attribute_item), + field('field', choice($._field_identifier, $.numeric_literal)), + ':', + field('value', $.expression), + ), + + base_field_initializer: ($) => seq('..', $.expression), + + // for example in let mut a; it would be `mut a` + mut_pattern: ($) => prec(-1, seq($.mutable_specifier, $._pattern)), + + // for example in + // match a { + // Foo::A | Foo::B => () + // } + // it would be Foo::A | Foo::B + or_pattern: ($) => + prec.left( + -2, + choice(seq($._pattern, '|', $._pattern), seq('|', $._pattern)), + ), + + // Section - Literals + + _literal: ($) => + choice( + $.string_literal, + $.shortstring_literal, + $.boolean_literal, + $.numeric_literal, + $.negative_literal, + ), + + _literal_pattern: ($) => + choice( + $.string_literal, + $.shortstring_literal, + $.boolean_literal, + $.numeric_literal, + prec(-1, $.negative_literal), + ), + + // for example in let a = -1; it would be `-1` + negative_literal: ($) => seq('-', $.numeric_literal), + + // for example in let a = 1_u32; it would be `1_u32` + numeric_literal: (_) => + token( + seq( + choice(/[0-9_]+/, /0x[0-9a-fA-F_]+/, /0b[01_]+/, /0o[0-7_]+/), + optional(token.immediate(seq('_', choice(...integerTypes, 'u256', 'felt252')))), + ), + ), + + // allows every ascii char except `"` unless it's escaped (accept escape sequences also) + string_literal: ($) => + seq(alias(/[bc]?"/, '"'), /([^"\\]|\\.)*/, token.immediate('"')), + + // allows every ascii char except `"` unless it's escaped (accept escape sequences also). Max length is 31 + shortstring_literal: ($) => + token(seq('\'', /(([^'\\]|\\.){0,31})/, '\'', optional('_felt252'))), + + boolean_literal: (_) => choice('true', 'false'), + + // Should match any token other than a delimiter. + _non_delim_token: ($) => choice($._non_special_token, '$'), + // for example in let a = a::b; it would be `a::b` + scoped_identifier: ($) => + seq( + field( + 'path', + optional( + choice( + $._path, + alias($.generic_type_with_turbofish, $.generic_type), + ), + ), + ), + '::', + field('name', choice($.identifier, $.super)), + ), + // Makes this type of expression work + // core::pedersen::HashState { state }.update_with(value).state + scoped_type_identifier_in_expression_position: ($) => + prec( + -2, + seq( + field( + 'path', + optional( + choice( + $._path, + alias($.generic_type_with_turbofish, $.generic_type), + ), + ), + ), + '::', + field('name', $._type_identifier), + ), + ), + // for example in struct A {a: A::b} it would be `A::b` + scoped_type_identifier: ($) => + seq( + field( + 'path', + optional( + choice( + $._path, + alias($.generic_type_with_turbofish, $.generic_type), + $.generic_type, + ), + ), + ), + '::', + field('name', $._type_identifier), + ), + + // for example in struct A {a: (u32, u32)} it would be `(u32, u32)` + tuple_type: ($) => seq('(', sepBy1(',', $._type), optional(','), ')'), + + // for example in struct A {a: ()} it would be `()` + unit_type: (_) => seq('(', ')'), + + // for example in struct A {a: B} it would be `` + type_arguments: ($) => + seq( + token(prec(1, '<')), + sepBy1(',', seq(choice($._type, $._literal, $.block))), + optional(','), + '>', + ), + + // Helper + expression_statement: ($) => + choice(seq($.expression, ';'), prec(1, $._expression_ending_with_block)), + + expression: ($) => + choice( + prec.left($.identifier), + alias(choice(...primitiveTypes), $.identifier), + prec.left($._reserved_identifier), + $.binary_expression, + $.call_expression, + $._expression_ending_with_block, + $._literal, + $.reference_expression, + $.field_expression, + $.scoped_identifier, + $.tuple_expression, + $.unary_expression, + $.struct_expression, + $.try_expression, + $.return_expression, + $.assignment_expression, + $.compound_assignment_expr, + $.generic_function, + $.array_expression, + $.unit_expression, + $.break_expression, + $.continue_expression, + $.index_expression, + $.parenthesized_expression, + prec(1, $.macro_invocation), + ), + // for example in a::(); it would be `a::` + generic_function: ($) => + prec( + 1, + seq( + field( + 'function', + choice($.identifier, $.scoped_identifier, $.field_expression), + ), + '::', + field('type_arguments', $.type_arguments), + ), + ), + + // (1, 2) + tuple_expression: ($) => + seq( + '(', + repeat($.attribute_item), + seq($.expression, ','), + repeat(seq($.expression, ',')), + optional($.expression), + ')', + ), + + // return () + return_expression: ($) => + choice(prec.left(seq('return', $.expression)), prec(-1, 'return')), + + // A {a, b} + struct_expression: ($) => + seq( + field( + 'name', + choice( + $._type_identifier, + alias( + $.scoped_type_identifier_in_expression_position, + $.scoped_type_identifier, + ), + $.generic_type_with_turbofish, + ), + ), + field('body', $.field_initializer_list), + ), + + // a = b + assignment_expression: ($) => + prec.left( + PREC.assign, + seq(field('left', $.expression), '=', field('right', $.expression)), + ), + // break true + break_expression: ($) => prec.left(seq('break', optional($.expression))), + + // continue + continue_expression: ($) => prec.left(seq('continue')), + + // a[i] + index_expression: ($) => + prec(PREC.call, seq($.expression, '[', $.expression, ']')), + + // [1, 2, 3] + array_expression: ($) => + seq( + '[', + repeat($.attribute_item), + choice( + seq($.expression, ';', field('length', $.expression)), + seq( + sepBy(',', seq(repeat($.attribute_item), $.expression)), + optional(','), + ), + ), + ']', + ), + + // (a()) + parenthesized_expression: ($) => seq('(', $.expression, ')'), + + // () + unit_expression: (_) => seq('(', ')'), + + // a += 1 + compound_assignment_expr: ($) => + prec.left( + PREC.assign, + seq( + field('left', $.expression), + field('operator', choice('+=', '-=', '*=', '/=', '%=')), + field('right', $.expression), + ), + ), + + // Helper + _expression_ending_with_block: ($) => + choice( + $.block, + $.if_expression, + $.match_expression, + $.while_expression, + $.loop_expression, + ), + + // @1 + unary_expression: ($) => + prec(PREC.unary, seq(choice('-', '*', '!', '~', '@'), $.expression)), + + // for example in let a = try_smth?; it would be `try_smth?` + try_expression: ($) => prec(PREC.try, seq($.expression, '?')), + + // foo.bar + field_expression: ($) => + prec( + PREC.field, + seq( + field('value', $.expression), + '.', + field('field', choice($._field_identifier, $.numeric_literal)), + ), + ), + + // section delimited by `{` and `{` + block: ($) => seq('{', repeat($._statement), optional($.expression), '}'), + + // if true { () } else { () } + if_expression: ($) => + prec.right( + seq( + 'if', + field('condition', $._condition), + field('consequence', $.block), + optional(field('alternative', $.else_clause)), + ), + ), + + // for example in if a == b { () } else { () } it would be `a == b` + _condition: ($) => choice($.expression, $.let_condition), + // for example in if let Option::Some(a)= b { () } else { () } it would be `let Option::Some(a)= b` + let_condition: ($) => + seq( + 'let', + field('pattern', $._pattern), + '=', + field('value', prec.left(PREC.and, $.expression)), + ), + + // for example in if a == b { () } else { () } it would be `else { () }` + else_clause: ($) => seq('else', choice($.block, $.if_expression)), + + // match opt { + // Option::Some(a) => a, + // Option::None => 0, + // } + match_expression: ($) => + seq('match', field('value', $.expression), field('body', $.match_block)), + + // { + // Option::Some(a) => a, + // Option::None => 0, + // } + match_block: ($) => + seq( + '{', + optional( + seq(repeat($.match_arm), alias($.last_match_arm, $.match_arm)), + ), + '}', + ), + // Option::Some(a) => a, + // and + // Option::None => 0, + match_arm: ($) => + prec.right( + seq( + repeat(choice($.attribute_item, $.inner_attribute_item)), + field('pattern', $.match_pattern), + '=>', + choice( + seq(field('value', $.expression), ','), + field('value', prec(1, $._expression_ending_with_block)), + ), + ), + ), + // for example in + // match u256_guarantee_inv_mod_n(a, n) { + // Result::Ok((inv_a, _, _, _, _, _, _, _, _)) => Option::Some(inv_a), + // Result::Err(_) => Option::None(()) + // } + // it would be Result::Err(_) => Option::None(()) + last_match_arm: ($) => + seq( + repeat(choice($.attribute_item, $.inner_attribute_item)), + field('pattern', $.match_pattern), + '=>', + field('value', $.expression), + optional(','), + ), + + // Option::Some(1) + tuple_enum_pattern: ($) => + seq( + field( + 'type', + choice( + $.identifier, + $.scoped_identifier, + alias($.generic_type_with_turbofish, $.generic_type), + ), + ), + '(', + sepBy(',', $._pattern), + optional(','), + ')', + ), + // for example in match opt { + // Option::Some(a) => a, + // Option::None => 0, + // } + // it would be `Option::Some(a)` and `Option::None` + match_pattern: ($) => + seq($._pattern, optional(seq('if', field('condition', $._condition)))), + + // while a != b {} + while_expression: ($) => + seq('while', field('condition', $._condition), field('body', $.block)), + + // loop {} + loop_expression: ($) => seq('loop', field('body', $.block)), + + // a == b + binary_expression: ($) => { + const table = [ + [PREC.and, '&&'], + [PREC.or, '||'], + [PREC.bitand, '&'], + [PREC.bitor, '|'], + [PREC.bitxor, '^'], + [PREC.comparative, choice('==', '!=', '<', '<=', '>', '>=')], + [PREC.shift, choice('<<', '>>')], + [PREC.additive, choice('+', '-')], + [PREC.multiplicative, choice('*', '/', '%')], + ]; + + // @ts-ignore + return choice( + ...table.map(([precedence, operator]) => + prec.left( + precedence, + seq( + field('left', $.expression), + // @ts-ignore + field('operator', operator), + field('right', $.expression), + ), + ), + ), + ); + }, + + // @Array + snapshot_type: ($) => seq('@', field('type', $._type)), + // foo() + call_expression: ($) => + prec( + PREC.call, + seq(field('function', $.expression), field('arguments', $.arguments)), + ), + // for example in foo(a, b, c) it would be `(a, b, c)` + arguments: ($) => + seq( + '(', + sepBy( + ',', + seq(repeat($.attribute_item), choice($.expression, $.named_argument)), + ), + optional(','), + ')', + ), + // for example in foo(bar: a, :b, :c) it would be `bar: a` and `:b` and `c` + named_argument: ($) => seq(optional($.identifier), ':', $.expression), + + // for example in foo(ref b) it would be `ref b` + reference_expression: ($) => + prec( + PREC.unary, + seq('ref', optional($.mutable_specifier), field('value', $.expression)), + ), + + // Helper alias + _type_identifier: ($) => alias($.identifier, $.type_identifier), + + // General helpers + identifier: ($) => /[a-zA-Z_][a-zA-Z0-9_]*/, + // keywords + visibility_modifier: ($) => + prec( + 20, + seq( + 'pub', + optional(seq('(', choice($.super, $.crate, seq('in', $._path)), ')')), + ), + ), + extern: (_) => 'extern', + nopanic: (_) => 'nopanic', + mutable_specifier: (_) => 'mut', + ref_specifier: (_) => 'ref', + super: (_) => 'super', + crate: (_) => 'crate', + _reserved_identifier: ($) => alias('default', $.identifier), + + // comments + line_comment: ($) => token(seq('//', /.*/)), + doc_comment: ($) => token(seq('///', /.*/)), + + _field_identifier: ($) => alias($.identifier, $.field_identifier), + }, +}); + +/** + * Creates a rule to match one or more of the rules separated by the separator. + * + * @param {RuleOrLiteral} sep - The separator to use. + * @param {RuleOrLiteral} rule + * + * @return {SeqRule} + * + */ +function sepBy1(sep, rule) { + return seq(rule, repeat(seq(sep, rule))); +} +/** + * Creates a rule to optionally match one or more of the rules separated by the separator. + * + * @param {RuleOrLiteral} sep - The separator to use. + * @param {RuleOrLiteral} rule + * + * @return {ChoiceRule} + * + */ +function sepBy(sep, rule) { + return optional(sepBy1(sep, rule)); +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..573cfdf --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1465 @@ +{ + "name": "tree-sitter-cairo", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-cairo", + "version": "0.0.1", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "devDependencies": { + "eslint": "^8.57.0", + "eslint-config-google": "^0.14.0", + "prebuildify": "^6.0.0", + "tree-sitter-cli": "^0.22.6" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz", + "integrity": "sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-google": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", + "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "eslint": ">=5.16.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.63.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.63.0.tgz", + "integrity": "sha512-vAszCsOUrUxjGAmdnM/pq7gUgie0IRteCQMX6d4A534fQCR93EJU5qgzBvU6EkFfK27s0T3HEV3BOyJIr7OMYw==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", + "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", + "engines": { + "node": "^16 || ^18 || >= 20" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.22.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.6.tgz", + "integrity": "sha512-s7mYOJXi8sIFkt/nLJSqlYZP96VmKTc3BAwIX0rrrlRxWjWuCwixFqwzxWZBQz4R8Hx01iP7z3cT3ih58BUmZQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/tree-sitter/node_modules/node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "peer": true, + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..02ce223 --- /dev/null +++ b/package.json @@ -0,0 +1,106 @@ +{ + "name": "tree-sitter-cairo", + "version": "0.0.1", + "description": "Cairo grammar for tree-sitter", + "main": "bindings/node", + "types": "bindings/node", + "repository": { + "type": "git", + "url": "git+https://github.com/starkware-libs/tree-sitter-cairo.git" + }, + "keywords": [ + "incremental", + "parsing", + "tree-sitter", + "cairo" + ], + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ], + "author": "LucasLvy", + "license": "MIT", + "bugs": { + "url": "https://github.com/starkware-libs/tree-sitter-cairo/issues" + }, + "homepage": "https://github.com/starkware-libs/tree-sitter-cairo#readme", + "dependencies": { + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + }, + "devDependencies": { + "eslint": "^8.57.0", + "eslint-config-google": "^0.14.0", + "prebuildify": "^6.0.0", + "tree-sitter-cli": "^0.22.6" + }, + "scripts": { + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip", + "build": "tree-sitter generate --no-bindings", + "build-wasm": "tree-sitter build --wasm", + "lint": "eslint grammar.js", + "parse": "tree-sitter parse", + "test": "tree-sitter test" + }, + "tree-sitter": [ + { + "scope": "source.cairo", + "injection-regex": "^cairo$" + } + ], + "eslintConfig": { + "env": { + "commonjs": true, + "es2021": true + }, + "extends": "google", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "arrow-parens": "off", + "camel-case": "off", + "indent": [ + "error", + 2, + { + "SwitchCase": 1 + } + ], + "max-len": [ + "error", + { + "code": 160, + "ignoreComments": true, + "ignoreUrls": true, + "ignoreStrings": true + } + ], + "spaced-comment": [ + "warn", + "always", + { + "line": { + "markers": [ + "/" + ] + } + } + ] + } + } +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3e56841 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-cairo" +description = "Cairo grammar for tree-sitter" +version = "0.0.1" +keywords = ["incremental", "parsing", "tree-sitter", "cairo"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed" +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-cairo" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/queries/highlights.scm b/queries/highlights.scm new file mode 100644 index 0000000..b13572b --- /dev/null +++ b/queries/highlights.scm @@ -0,0 +1,368 @@ +; ------- +; Tree-Sitter doesn't allow overrides in regards to captures, +; though it is possible to affect the child node of a captured +; node. Thus, the approach here is to flip the order so that +; overrides are unnecessary. +; ------- + +; ------- +; Types +; ------- + +(type_parameters + (type_identifier) @type.parameter) +(constrained_type_parameter + left: (type_identifier) @type.parameter) + +; --- +; Primitives +; --- + +(primitive_type) @type.builtin +(boolean_literal) @constant.builtin.boolean +(numeric_literal) @constant.numeric.integer +[ + (string_literal) + (shortstring_literal) +] @string +[ + (line_comment) +] @comment + +; --- +; Extraneous +; --- + +(enum_variant (identifier) @type.enum.variant) + +(field_initializer + (field_identifier) @variable.other.member) +(shorthand_field_initializer + (identifier) @variable.other.member) +(shorthand_field_identifier) @variable.other.member + + +; --- +; Punctuation +; --- + +[ + "::" + "." + ";" + "," +] @punctuation.delimiter + +[ + "(" + ")" + "[" + "]" + "{" + "}" +] @punctuation.bracket +(type_arguments + [ + "<" + ">" + ] @punctuation.bracket) +(type_parameters + [ + "<" + ">" + ] @punctuation.bracket) + +; --- +; Variables +; --- + +(let_declaration + pattern: [ + ((identifier) @variable) + ((tuple_pattern + (identifier) @variable)) + ]) + +; It needs to be anonymous to not conflict with `call_expression` further below. +(_ + value: (field_expression + value: (identifier)? @variable + field: (field_identifier) @variable.other.member)) + +(parameter + pattern: (identifier) @variable.parameter) + +; ------- +; Keywords +; ------- + +((identifier) @keyword.control + (#match? @keyword.control "^yield$")) + + +[ + "match" + "if" + "else" +] @keyword.control.conditional + +[ + "while" + "loop" +] @keyword.control.repeat + +[ + "break" + "continue" + "return" +] @keyword.control.return + +"use" @keyword.control.import +(mod_item "mod" @keyword.control.import !body) +(use_as_clause "as" @keyword.control.import) + + +[ + (crate) + (super) + "as" + "pub" + "mod" + (extern) + (nopanic) + + "impl" + "trait" + "of" + + "default" +] @keyword + +[ + "struct" + "enum" + "type" +] @keyword.storage.type + +"let" @keyword.storage +"fn" @keyword.function + +(mutable_specifier) @keyword.storage.modifier.mut +(ref_specifier) @keyword.storage.modifier.ref + +(snapshot_type "@" @keyword.storage.modifier.ref) + +[ + "const" + "ref" +] @keyword.storage.modifier + +; TODO: variable.mut to highlight mutable identifiers via locals.scm + +; ------- +; Constructors +; ------- +; TODO: this is largely guesswork, remove it once we get actual info from locals.scm or r-a + +(struct_expression + name: (type_identifier) @constructor) + +(tuple_enum_pattern + type: [ + (identifier) @constructor + (scoped_identifier + name: (identifier) @constructor) + ]) +(struct_pattern + type: [ + ((type_identifier) @constructor) + (scoped_type_identifier + name: (type_identifier) @constructor) + ]) +(match_pattern + ((identifier) @constructor) (#match? @constructor "^[A-Z]")) +(or_pattern + ((identifier) @constructor) + ((identifier) @constructor) + (#match? @constructor "^[A-Z]")) + +; ------- +; Guess Other Types +; ------- + +((identifier) @constant + (#match? @constant "^[A-Z][A-Z\\d_]*$")) + +; --- +; PascalCase identifiers in call_expressions (e.g. `Ok()`) +; are assumed to be enum constructors. +; --- + +(call_expression + function: [ + ((identifier) @constructor + (#match? @constructor "^[A-Z]")) + (scoped_identifier + name: ((identifier) @constructor + (#match? @constructor "^[A-Z]"))) + ]) + +; --- +; PascalCase identifiers under a path which is also PascalCase +; are assumed to be constructors if they have methods or fields. +; --- + +(field_expression + value: (scoped_identifier + path: [ + (identifier) @type + (scoped_identifier + name: (identifier) @type) + ] + name: (identifier) @constructor + (#match? @type "^[A-Z]") + (#match? @constructor "^[A-Z]"))) + +; --- +; Other PascalCase identifiers are assumed to be structs. +; --- + +((identifier) @type + (#match? @type "^[A-Z]")) + +; ------- +; Functions +; ------- + +(call_expression + function: [ + ((identifier) @function) + (scoped_identifier + name: (identifier) @function) + (field_expression + field: (field_identifier) @function) + ]) +(generic_function + function: [ + ((identifier) @function) + (scoped_identifier + name: (identifier) @function) + (field_expression + field: (field_identifier) @function.method) + ]) +(function_item + (function + name: (identifier) @function)) + +(function_signature_item + (function + name: (identifier) @function)) + +(external_function_item + (function + name: (identifier) @function)) + +; --- +; Macros +; --- + +(attribute + (identifier) @special + arguments: (token_tree (identifier) @type) + (#eq? @special "derive") +) + +(attribute + (identifier) @function.macro) +(attribute + [ + (identifier) @function.macro + (scoped_identifier + name: (identifier) @function.macro) + ] + (token_tree (identifier) @function.macro)?) + +(inner_attribute_item) @attribute + +(macro_invocation + macro: [ + ((identifier) @function.macro) + (scoped_identifier + name: (identifier) @function.macro) + ] + "!" @function.macro) + + +; ------- +; Operators +; ------- + +[ + "*" + "->" + "=>" + "<=" + "=" + "==" + "!" + "!=" + "%" + "%=" + "@" + "&&" + "|" + "|=" + "||" + "^" + "*" + "*=" + "-" + "-=" + "+" + "+=" + "/" + "/=" + ">" + "<" + ">=" + ">>" + "<<" +] @operator + +; ------- +; Paths +; ------- + +(use_declaration + argument: (identifier) @namespace) +(use_wildcard + (identifier) @namespace) +(mod_item + name: (identifier) @namespace) +(scoped_use_list + path: (identifier)? @namespace) +(use_list + (identifier) @namespace) +(use_as_clause + path: (identifier)? @namespace + alias: (identifier) @namespace) + +; --- +; Remaining Paths +; --- + +(scoped_identifier + path: (identifier)? @namespace + name: (identifier) @namespace) +(scoped_type_identifier + path: (identifier) @namespace) + +; ------- +; Remaining Identifiers +; ------- + +"?" @special + +(type_identifier) @type +(identifier) @variable +(field_identifier) @variable.other.member diff --git a/queries/indents.scm b/queries/indents.scm new file mode 100644 index 0000000..35c1624 --- /dev/null +++ b/queries/indents.scm @@ -0,0 +1,118 @@ +[ + (use_list) + (block) + (match_block) + (arguments) + (parameters) + (declaration_list) + (field_declaration_list) + (field_initializer_list) + (struct_pattern) + (tuple_pattern) + (unit_expression) + (enum_variant_list) + (call_expression) + (binary_expression) + (field_expression) + (tuple_expression) + (array_expression) + + (token_tree) +] @indent + +[ + "}" + "]" + ")" +] @outdent + +; Indent the right side of assignments. +; The #not-same-line? predicate is required to prevent an extra indent for e.g. +; an else-clause where the previous if-clause starts on the same line as the assignment. +(assignment_expression + . + (_) @expr-start + right: (_) @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) +(compound_assignment_expr + . + (_) @expr-start + right: (_) @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) +(let_declaration + "let" @expr-start + value: (_) @indent + alternative: (_)? @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) +(let_condition + . + (_) @expr-start + value: (_) @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) +(if_expression + . + (_) @expr-start + condition: (_) @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) +(field_pattern + . + (_) @expr-start + pattern: (_) @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) +; Indent type aliases that span multiple lines, similar to +; regular assignment expressions +(type_item + . + (_) @expr-start + type: (_) @indent + (#not-same-line? @indent @expr-start) + (#set! "scope" "all") +) + +; Some field expressions where the left part is a multiline expression are not +; indented by cargo fmt. +; Because this multiline expression might be nested in an arbitrary number of +; field expressions, this can only be matched using a Regex. +(field_expression + value: (_) @val + "." @outdent + ; Check whether the first line ends with `(`, `{` or `[` (up to whitespace). + (#match? @val "(\\A[^\\n\\r]+(\\(|\\{|\\[)[\\t ]*(\\n|\\r))") +) +; Same as above, but with an additional `call_expression`. This is required since otherwise +; the arguments of the function call won't be outdented. +(call_expression + function: (field_expression + value: (_) @val + "." @outdent + (#match? @val "(\\A[^\\n\\r]+(\\(|\\{|\\[)[\\t ]*(\\n|\\r))") + ) + arguments: (_) @outdent +) + + +; Indent if guards in patterns. +; Since the tree-sitter grammar doesn't create a node for the if expression, +; it's not possible to do this correctly in all cases. Indenting the tail of the +; whole pattern whenever it contains an `if` only fails if the `if` appears after +; the second line of the pattern (which should only rarely be the case) +(match_pattern + . + (_) @expr-start + "if" @pattern-guard + (#not-same-line? @expr-start @pattern-guard) +) @indent + + diff --git a/queries/injections.scm b/queries/injections.scm new file mode 100644 index 0000000..e07c83b --- /dev/null +++ b/queries/injections.scm @@ -0,0 +1,3 @@ +([(line_comment)] @injection.content + (#set! injection.language "comment")) + diff --git a/queries/locals.scm b/queries/locals.scm new file mode 100644 index 0000000..35acb55 --- /dev/null +++ b/queries/locals.scm @@ -0,0 +1,25 @@ +; Scopes + +[ + (function_item) + (struct_item) + (enum_item) + (type_item) + (trait_item) + (impl_item) + (block) +] @local.scope + +; Definitions + +(parameter + (identifier) @local.definition) + +(type_parameters + (type_identifier) @local.definition) +(constrained_type_parameter + left: (type_identifier) @local.definition) + +; References +(identifier) @local.reference +(type_identifier) @local.reference diff --git a/queries/textobjects.scm b/queries/textobjects.scm new file mode 100644 index 0000000..4031873 --- /dev/null +++ b/queries/textobjects.scm @@ -0,0 +1,73 @@ +(function_item + body: (_) @function.inside) @function.around + +(struct_item + body: (_) @class.inside) @class.around + +(enum_item + body: (_) @class.inside) @class.around + +(trait_item + body: (_) @class.inside) @class.around + +(impl_item + body: (_) @class.inside) @class.around + +(parameters + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +(type_parameters + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +(type_arguments + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +(arguments + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +(field_initializer_list + ((_) @parameter.inside . ","? @parameter.around) @parameter.around) + +[ + (line_comment) +] @comment.inside + +(line_comment)+ @comment.around + +(; #[test] + (attribute_item + (attribute + (identifier) @_test_attribute)) + ; allow other attributes like #[should_panic] and comments + [ + (attribute_item) + (line_comment) + ]* + ; the test function + (function_item + body: (_) @test.inside) @test.around + (#eq? @_test_attribute "test")) + +(array_expression + (_) @entry.around) + +(tuple_expression + (_) @entry.around) + +(tuple_pattern + (_) @entry.around) + +; Commonly used vec macro intializer is special cased +(macro_invocation + (identifier) @_id (token_tree (_) @entry.around) + (#eq? @_id "array")) + +(enum_variant) @entry.around + +(field_declaration + (_) @entry.inside) @entry.around + +(field_initializer + (_) @entry.inside) @entry.around + +(shorthand_field_initializer) @entry.around diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fba426b --- /dev/null +++ b/setup.py @@ -0,0 +1,60 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_cairo", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_cairo": ["*.pyi", "py.typed"], + "tree_sitter_cairo.queries": ["*.scm"], + }, + ext_package="tree_sitter_cairo", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_cairo/binding.c", + "src/parser.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=[ + "-std=c11", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", + ], + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/src/grammar.json b/src/grammar.json new file mode 100644 index 0000000..16fbb79 --- /dev/null +++ b/src/grammar.json @@ -0,0 +1,5888 @@ +{ + "name": "cairo", + "rules": { + "source_file": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + "_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "_declaration_statement" + } + ] + }, + "_declaration_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "const_item" + }, + { + "type": "SYMBOL", + "name": "macro_invocation" + }, + { + "type": "SYMBOL", + "name": "empty_statement" + }, + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "SYMBOL", + "name": "inner_attribute_item" + }, + { + "type": "SYMBOL", + "name": "mod_item" + }, + { + "type": "SYMBOL", + "name": "struct_item" + }, + { + "type": "SYMBOL", + "name": "enum_item" + }, + { + "type": "SYMBOL", + "name": "type_item" + }, + { + "type": "SYMBOL", + "name": "external_function_item" + }, + { + "type": "SYMBOL", + "name": "function_item" + }, + { + "type": "SYMBOL", + "name": "function_signature_item" + }, + { + "type": "SYMBOL", + "name": "impl_item" + }, + { + "type": "SYMBOL", + "name": "trait_item" + }, + { + "type": "SYMBOL", + "name": "let_declaration" + }, + { + "type": "SYMBOL", + "name": "use_declaration" + }, + { + "type": "SYMBOL", + "name": "associated_type" + } + ] + }, + "declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_statement" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "impl_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "impl" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "of" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "trait_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "trait" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "associated_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "const_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "const" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "macro_invocation": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "macro", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "empty_statement": { + "type": "STRING", + "value": ";" + }, + "attribute_item": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "inner_attribute_item": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "mod_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "mod" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + } + ] + } + ] + }, + "struct_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "struct" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "enum_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "enum" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enum_variant_list" + } + } + ] + }, + "enum_variant_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "enum_variant" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "enum_variant" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "enum_variant": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "variant", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + }, + { + "type": "FIELD", + "name": "variant", + "content": { + "type": "SYMBOL", + "name": "field_declaration" + } + } + ] + }, + "field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "field_declaration" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "field_declaration" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "field_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + "type_item": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "extern_type" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "impl" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + "extern_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "extern" + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "external_function_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "extern" + }, + { + "type": "SYMBOL", + "name": "function" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "function_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, + "function_signature_item": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "function" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "function": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "fn" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameters" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "implicit_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "implicits" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "nopanic" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "let_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "use_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "use" + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_use_clause" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_use_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "SYMBOL", + "name": "use_as_clause" + }, + { + "type": "SYMBOL", + "name": "use_list" + }, + { + "type": "SYMBOL", + "name": "scoped_use_list" + }, + { + "type": "SYMBOL", + "name": "use_wildcard" + } + ] + }, + "scoped_use_list": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "list", + "content": { + "type": "SYMBOL", + "name": "use_list" + } + } + ] + }, + "use_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_use_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_use_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "use_as_clause": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "path", + "content": { + "type": "SYMBOL", + "name": "_path" + } + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + }, + "use_wildcard": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "STRING", + "value": "::" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + "parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ref_specifier" + }, + { + "type": "SYMBOL", + "name": "mutable_specifier" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + "_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + { + "type": "SYMBOL", + "name": "scoped_type_identifier" + }, + { + "type": "SYMBOL", + "name": "snapshot_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" + }, + { + "type": "SYMBOL", + "name": "unit_type" + }, + { + "type": "SYMBOL", + "name": "array_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "macro_invocation" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u8" + }, + { + "type": "STRING", + "value": "i8" + }, + { + "type": "STRING", + "value": "u16" + }, + { + "type": "STRING", + "value": "i16" + }, + { + "type": "STRING", + "value": "u32" + }, + { + "type": "STRING", + "value": "i32" + }, + { + "type": "STRING", + "value": "u64" + }, + { + "type": "STRING", + "value": "i64" + }, + { + "type": "STRING", + "value": "u128" + }, + { + "type": "STRING", + "value": "i128" + }, + { + "type": "STRING", + "value": "usize" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "ByteArray" + }, + { + "type": "STRING", + "value": "felt252" + } + ] + }, + "named": true, + "value": "primitive_type" + } + ] + }, + "_path": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u8" + }, + { + "type": "STRING", + "value": "i8" + }, + { + "type": "STRING", + "value": "u16" + }, + { + "type": "STRING", + "value": "i16" + }, + { + "type": "STRING", + "value": "u32" + }, + { + "type": "STRING", + "value": "i32" + }, + { + "type": "STRING", + "value": "u64" + }, + { + "type": "STRING", + "value": "i64" + }, + { + "type": "STRING", + "value": "u128" + }, + { + "type": "STRING", + "value": "i128" + }, + { + "type": "STRING", + "value": "usize" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "ByteArray" + }, + { + "type": "STRING", + "value": "felt252" + } + ] + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "type_parameters": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "constrained_type_parameter" + }, + { + "type": "SYMBOL", + "name": "const_parameter" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "constrained_type_parameter" + }, + { + "type": "SYMBOL", + "name": "const_parameter" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + } + }, + "const_parameter": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + "constrained_type_parameter": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "impl" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "STRING", + "value": ":" + } + ] + } + }, + { + "type": "FIELD", + "name": "bound", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + } + ] + } + ] + } + ] + }, + "generic_type": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_type_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + } + }, + "generic_type_with_turbofish": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + }, + "array_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "element", + "content": { + "type": "SYMBOL", + "name": "_type" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "length", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "delim_token_tree": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + }, + "_delim_tokens": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_delim_token" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "_non_special_token": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u8" + }, + { + "type": "STRING", + "value": "i8" + }, + { + "type": "STRING", + "value": "u16" + }, + { + "type": "STRING", + "value": "i16" + }, + { + "type": "STRING", + "value": "u32" + }, + { + "type": "STRING", + "value": "i32" + }, + { + "type": "STRING", + "value": "u64" + }, + { + "type": "STRING", + "value": "i64" + }, + { + "type": "STRING", + "value": "u128" + }, + { + "type": "STRING", + "value": "i128" + }, + { + "type": "STRING", + "value": "usize" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "ByteArray" + }, + { + "type": "STRING", + "value": "felt252" + } + ] + }, + "named": true, + "value": "primitive_type" + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "?" + } + ] + } + } + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": "enum" + }, + { + "type": "STRING", + "value": "fn" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "impl" + }, + { + "type": "STRING", + "value": "extern" + }, + { + "type": "STRING", + "value": "nopanic" + }, + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "loop" + }, + { + "type": "STRING", + "value": "match" + }, + { + "type": "STRING", + "value": "mod" + }, + { + "type": "STRING", + "value": "pub" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "struct" + }, + { + "type": "STRING", + "value": "trait" + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "use" + }, + { + "type": "STRING", + "value": "while" + } + ] + }, + "_pattern": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u8" + }, + { + "type": "STRING", + "value": "i8" + }, + { + "type": "STRING", + "value": "u16" + }, + { + "type": "STRING", + "value": "i16" + }, + { + "type": "STRING", + "value": "u32" + }, + { + "type": "STRING", + "value": "i32" + }, + { + "type": "STRING", + "value": "u64" + }, + { + "type": "STRING", + "value": "i64" + }, + { + "type": "STRING", + "value": "u128" + }, + { + "type": "STRING", + "value": "i128" + }, + { + "type": "STRING", + "value": "usize" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "ByteArray" + }, + { + "type": "STRING", + "value": "felt252" + } + ] + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "tuple_pattern" + }, + { + "type": "SYMBOL", + "name": "struct_pattern" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "mut_pattern" + }, + { + "type": "SYMBOL", + "name": "or_pattern" + }, + { + "type": "SYMBOL", + "name": "slice_pattern" + }, + { + "type": "SYMBOL", + "name": "macro_invocation" + }, + { + "type": "SYMBOL", + "name": "tuple_enum_pattern" + }, + { + "type": "STRING", + "value": "_" + } + ] + }, + "tuple_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "slice_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "struct_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_type_identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "field_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "field_pattern" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "field_pattern": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "shorthand_field_identifier" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + } + ] + } + ] + } + ] + }, + "field_initializer_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "shorthand_field_initializer" + }, + { + "type": "SYMBOL", + "name": "field_initializer" + }, + { + "type": "SYMBOL", + "name": "base_field_initializer" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "shorthand_field_initializer" + }, + { + "type": "SYMBOL", + "name": "field_initializer" + }, + { + "type": "SYMBOL", + "name": "base_field_initializer" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "shorthand_field_initializer": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "field_initializer": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_identifier" + }, + { + "type": "SYMBOL", + "name": "numeric_literal" + } + ] + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "base_field_initializer": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "mut_pattern": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + } + }, + "or_pattern": { + "type": "PREC_LEFT", + "value": -2, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pattern" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + } + ] + } + }, + "_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "shortstring_literal" + }, + { + "type": "SYMBOL", + "name": "boolean_literal" + }, + { + "type": "SYMBOL", + "name": "numeric_literal" + }, + { + "type": "SYMBOL", + "name": "negative_literal" + } + ] + }, + "_literal_pattern": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "shortstring_literal" + }, + { + "type": "SYMBOL", + "name": "boolean_literal" + }, + { + "type": "SYMBOL", + "name": "numeric_literal" + }, + { + "type": "PREC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "negative_literal" + } + } + ] + }, + "negative_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "SYMBOL", + "name": "numeric_literal" + } + ] + }, + "numeric_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[0-9_]+" + }, + { + "type": "PATTERN", + "value": "0x[0-9a-fA-F_]+" + }, + { + "type": "PATTERN", + "value": "0b[01_]+" + }, + { + "type": "PATTERN", + "value": "0o[0-7_]+" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u8" + }, + { + "type": "STRING", + "value": "i8" + }, + { + "type": "STRING", + "value": "u16" + }, + { + "type": "STRING", + "value": "i16" + }, + { + "type": "STRING", + "value": "u32" + }, + { + "type": "STRING", + "value": "i32" + }, + { + "type": "STRING", + "value": "u64" + }, + { + "type": "STRING", + "value": "i64" + }, + { + "type": "STRING", + "value": "u128" + }, + { + "type": "STRING", + "value": "i128" + }, + { + "type": "STRING", + "value": "usize" + }, + { + "type": "STRING", + "value": "u256" + }, + { + "type": "STRING", + "value": "felt252" + } + ] + } + ] + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "string_literal": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[bc]?\"" + }, + "named": false, + "value": "\"" + }, + { + "type": "PATTERN", + "value": "([^\"\\\\]|\\\\.)*" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "\"" + } + } + ] + }, + "shortstring_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "PATTERN", + "value": "(([^'\\\\]|\\\\.){0,31})" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_felt252" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "boolean_literal": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + } + ] + }, + "_non_delim_token": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_special_token" + }, + { + "type": "STRING", + "value": "$" + } + ] + }, + "scoped_identifier": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + "named": true, + "value": "generic_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "super" + } + ] + } + } + ] + }, + "scoped_type_identifier_in_expression_position": { + "type": "PREC", + "value": -2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + "named": true, + "value": "generic_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + } + ] + } + }, + "scoped_type_identifier": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_path" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + "named": true, + "value": "generic_type" + }, + { + "type": "SYMBOL", + "name": "generic_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + } + ] + }, + "tuple_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "unit_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "type_arguments": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "<" + } + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "expression_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_expression_ending_with_block" + } + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u8" + }, + { + "type": "STRING", + "value": "i8" + }, + { + "type": "STRING", + "value": "u16" + }, + { + "type": "STRING", + "value": "i16" + }, + { + "type": "STRING", + "value": "u32" + }, + { + "type": "STRING", + "value": "i32" + }, + { + "type": "STRING", + "value": "u64" + }, + { + "type": "STRING", + "value": "i64" + }, + { + "type": "STRING", + "value": "u128" + }, + { + "type": "STRING", + "value": "i128" + }, + { + "type": "STRING", + "value": "usize" + }, + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "ByteArray" + }, + { + "type": "STRING", + "value": "felt252" + } + ] + }, + "named": true, + "value": "identifier" + }, + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + }, + { + "type": "SYMBOL", + "name": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "_expression_ending_with_block" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "reference_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "tuple_expression" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "struct_expression" + }, + { + "type": "SYMBOL", + "name": "try_expression" + }, + { + "type": "SYMBOL", + "name": "return_expression" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "compound_assignment_expr" + }, + { + "type": "SYMBOL", + "name": "generic_function" + }, + { + "type": "SYMBOL", + "name": "array_expression" + }, + { + "type": "SYMBOL", + "name": "unit_expression" + }, + { + "type": "SYMBOL", + "name": "break_expression" + }, + { + "type": "SYMBOL", + "name": "continue_expression" + }, + { + "type": "SYMBOL", + "name": "index_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "macro_invocation" + } + } + ] + }, + "generic_function": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + }, + { + "type": "SYMBOL", + "name": "field_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + } + }, + "tuple_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "return_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": "return" + } + } + ] + }, + "struct_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "scoped_type_identifier_in_expression_position" + }, + "named": true, + "value": "scoped_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_initializer_list" + } + } + ] + }, + "assignment_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "break_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "continue_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + } + ] + } + }, + "index_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "array_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "length", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "unit_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "compound_assignment_expr": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_expression_ending_with_block": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "if_expression" + }, + { + "type": "SYMBOL", + "name": "match_expression" + }, + { + "type": "SYMBOL", + "name": "while_expression" + }, + { + "type": "SYMBOL", + "name": "loop_expression" + } + ] + }, + "unary_expression": { + "type": "PREC", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "@" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "try_expression": { + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "?" + } + ] + } + }, + "field_expression": { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_identifier" + }, + { + "type": "SYMBOL", + "name": "numeric_literal" + } + ] + } + } + ] + } + }, + "block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "if_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_condition" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_condition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "let_condition" + } + ] + }, + "let_condition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + } + ] + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "if_expression" + } + ] + } + ] + }, + "match_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "match" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "match_block" + } + } + ] + }, + "match_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "match_arm" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "last_match_arm" + }, + "named": true, + "value": "match_arm" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "match_arm": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "SYMBOL", + "name": "inner_attribute_item" + } + ] + } + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "match_pattern" + } + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "," + } + ] + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_expression_ending_with_block" + } + } + } + ] + } + ] + } + }, + "last_match_arm": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "SYMBOL", + "name": "inner_attribute_item" + } + ] + } + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "match_pattern" + } + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "tuple_enum_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + "named": true, + "value": "generic_type" + } + ] + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "match_pattern": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pattern" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_condition" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "while_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_condition" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, + "loop_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "loop" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": ">=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "snapshot_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + "call_expression": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "named_argument" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "named_argument" + } + ] + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "named_argument": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "reference_expression": { + "type": "PREC", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "ref" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_type_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "type_identifier" + }, + "identifier": { + "type": "PATTERN", + "value": "[a-zA-Z_][a-zA-Z0-9_]*" + }, + "visibility_modifier": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "pub" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "SYMBOL", + "name": "crate" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "_path" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "extern": { + "type": "STRING", + "value": "extern" + }, + "nopanic": { + "type": "STRING", + "value": "nopanic" + }, + "mutable_specifier": { + "type": "STRING", + "value": "mut" + }, + "ref_specifier": { + "type": "STRING", + "value": "ref" + }, + "super": { + "type": "STRING", + "value": "super" + }, + "crate": { + "type": "STRING", + "value": "crate" + }, + "_reserved_identifier": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "default" + }, + "named": true, + "value": "identifier" + }, + "line_comment": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + } + }, + "doc_comment": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "///" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + } + }, + "_field_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "field_identifier" + } + }, + "extras": [ + { + "type": "PATTERN", + "value": "\\s" + }, + { + "type": "SYMBOL", + "name": "line_comment" + } + ], + "conflicts": [ + [ + "_type", + "_pattern" + ], + [ + "unit_type", + "tuple_pattern" + ], + [ + "scoped_identifier", + "scoped_type_identifier" + ], + [ + "_literal", + "negative_literal" + ], + [ + "negative_literal", + "_non_delim_token" + ], + [ + "array_expression" + ] + ], + "precedences": [], + "externals": [], + "inline": [ + "_path", + "_type_identifier", + "_field_identifier", + "_non_special_token", + "_declaration_statement", + "_reserved_identifier" + ], + "supertypes": [ + "expression", + "_type", + "_literal", + "_literal_pattern", + "_declaration_statement", + "_pattern" + ] +} diff --git a/src/node-types.json b/src/node-types.json new file mode 100644 index 0000000..ee785d3 --- /dev/null +++ b/src/node-types.json @@ -0,0 +1,3276 @@ +[ + { + "type": "_declaration_statement", + "named": true, + "subtypes": [ + { + "type": "associated_type", + "named": true + }, + { + "type": "attribute_item", + "named": true + }, + { + "type": "const_item", + "named": true + }, + { + "type": "empty_statement", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "external_function_item", + "named": true + }, + { + "type": "function_item", + "named": true + }, + { + "type": "function_signature_item", + "named": true + }, + { + "type": "impl_item", + "named": true + }, + { + "type": "inner_attribute_item", + "named": true + }, + { + "type": "let_declaration", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "mod_item", + "named": true + }, + { + "type": "struct_item", + "named": true + }, + { + "type": "trait_item", + "named": true + }, + { + "type": "type_item", + "named": true + }, + { + "type": "use_declaration", + "named": true + } + ] + }, + { + "type": "_literal", + "named": true, + "subtypes": [ + { + "type": "boolean_literal", + "named": true + }, + { + "type": "negative_literal", + "named": true + }, + { + "type": "numeric_literal", + "named": true + }, + { + "type": "shortstring_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + }, + { + "type": "_literal_pattern", + "named": true, + "subtypes": [ + { + "type": "boolean_literal", + "named": true + }, + { + "type": "negative_literal", + "named": true + }, + { + "type": "numeric_literal", + "named": true + }, + { + "type": "shortstring_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + }, + { + "type": "_pattern", + "named": true, + "subtypes": [ + { + "type": "_", + "named": false + }, + { + "type": "_literal_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "mut_pattern", + "named": true + }, + { + "type": "or_pattern", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "slice_pattern", + "named": true + }, + { + "type": "struct_pattern", + "named": true + }, + { + "type": "tuple_enum_pattern", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + } + ] + }, + { + "type": "_type", + "named": true, + "subtypes": [ + { + "type": "array_type", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "generic_type_with_turbofish", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "scoped_type_identifier", + "named": true + }, + { + "type": "snapshot_type", + "named": true + }, + { + "type": "tuple_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "unit_type", + "named": true + } + ] + }, + { + "type": "expression", + "named": true, + "subtypes": [ + { + "type": "_literal", + "named": true + }, + { + "type": "array_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "break_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "compound_assignment_expr", + "named": true + }, + { + "type": "continue_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "generic_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if_expression", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "loop_expression", + "named": true + }, + { + "type": "macro_invocation", + "named": true + }, + { + "type": "match_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "reference_expression", + "named": true + }, + { + "type": "return_expression", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "struct_expression", + "named": true + }, + { + "type": "try_expression", + "named": true + }, + { + "type": "tuple_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "unit_expression", + "named": true + }, + { + "type": "while_expression", + "named": true + } + ] + }, + { + "type": "arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "named_argument", + "named": true + } + ] + } + }, + { + "type": "array_expression", + "named": true, + "fields": { + "length": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "array_type", + "named": true, + "fields": { + "element": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "length": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "associated_type", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "attribute", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "token_tree", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + }, + { + "type": "attribute_item", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, + { + "type": "base_field_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "binary_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_declaration_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "expression_statement", + "named": true + } + ] + } + }, + { + "type": "boolean_literal", + "named": true, + "fields": {} + }, + { + "type": "break_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "compound_assignment_expr", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "/=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "const_item", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "const_parameter", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + } + }, + { + "type": "constrained_type_parameter", + "named": true, + "fields": { + "bound": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "left": { + "multiple": true, + "required": false, + "types": [ + { + "type": ":", + "named": false + }, + { + "type": "impl", + "named": false + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "generic_type", + "named": true + }, + { + "type": "generic_type_with_turbofish", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "continue_expression", + "named": true, + "fields": {} + }, + { + "type": "declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_declaration_statement", + "named": true + } + ] + } + }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + }, + { + "type": "if_expression", + "named": true + } + ] + } + }, + { + "type": "empty_statement", + "named": true, + "fields": {} + }, + { + "type": "enum_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "enum_variant_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "enum_variant", + "named": true, + "fields": { + "variant": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_declaration", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "enum_variant_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "enum_variant", + "named": true + } + ] + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "extern", + "named": true, + "fields": {} + }, + { + "type": "extern_type", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "extern", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "external_function_item", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "extern", + "named": true + }, + { + "type": "function", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "field_declaration", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "field_declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "field_declaration", + "named": true + } + ] + } + }, + { + "type": "field_expression", + "named": true, + "fields": { + "field": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + }, + { + "type": "numeric_literal", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "field_initializer", + "named": true, + "fields": { + "field": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + }, + { + "type": "numeric_literal", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + } + ] + } + }, + { + "type": "field_initializer_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "base_field_initializer", + "named": true + }, + { + "type": "field_initializer", + "named": true + }, + { + "type": "shorthand_field_initializer", + "named": true + } + ] + } + }, + { + "type": "field_pattern", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + }, + { + "type": "shorthand_field_identifier", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "mutable_specifier", + "named": true + } + ] + } + }, + { + "type": "function", + "named": true, + "fields": { + "implicit_arguments": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "_type", + "named": true + }, + { + "type": "implicits", + "named": false + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "nopanic", + "named": true + } + ] + } + }, + { + "type": "function_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "function_signature_item", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "function", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "generic_function", + "named": true, + "fields": { + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "generic_type", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "scoped_type_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "generic_type_with_turbofish", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "if_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "impl_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_type", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "index_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "inner_attribute_item", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, + { + "type": "let_condition", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "let_declaration", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "mutable_specifier", + "named": true + } + ] + } + }, + { + "type": "loop_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "macro_invocation", + "named": true, + "fields": { + "macro": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "token_tree", + "named": true + } + ] + } + }, + { + "type": "match_arm", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "match_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "inner_attribute_item", + "named": true + } + ] + } + }, + { + "type": "match_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "match_arm", + "named": true + } + ] + } + }, + { + "type": "match_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "match_block", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "match_pattern", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + { + "type": "mod_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "mut_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + }, + { + "type": "mutable_specifier", + "named": true + } + ] + } + }, + { + "type": "named_argument", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "negative_literal", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "numeric_literal", + "named": true + } + ] + } + }, + { + "type": "nopanic", + "named": true, + "fields": {} + }, + { + "type": "or_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + { + "type": "parameter", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "mutable_specifier", + "named": true + }, + { + "type": "ref_specifier", + "named": true + } + ] + } + }, + { + "type": "parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_type", + "named": true + }, + { + "type": "attribute_item", + "named": true + }, + { + "type": "parameter", + "named": true + } + ] + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "ref_specifier", + "named": true, + "fields": {} + }, + { + "type": "reference_expression", + "named": true, + "fields": { + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "mutable_specifier", + "named": true + } + ] + } + }, + { + "type": "return_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "scoped_identifier", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + }, + "path": { + "multiple": false, + "required": false, + "types": [ + { + "type": "generic_type", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + } + }, + { + "type": "scoped_type_identifier", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "path": { + "multiple": false, + "required": false, + "types": [ + { + "type": "generic_type", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + } + }, + { + "type": "scoped_use_list", + "named": true, + "fields": { + "list": { + "multiple": false, + "required": true, + "types": [ + { + "type": "use_list", + "named": true + } + ] + }, + "path": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + } + }, + { + "type": "shorthand_field_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "slice_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + { + "type": "snapshot_type", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + } + }, + { + "type": "source_file", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_declaration_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + } + ] + } + }, + { + "type": "string_literal", + "named": true, + "fields": {} + }, + { + "type": "struct_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_initializer_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "generic_type_with_turbofish", + "named": true + }, + { + "type": "scoped_type_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "struct_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "field_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "struct_pattern", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "scoped_type_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "field_pattern", + "named": true + } + ] + } + }, + { + "type": "token_tree", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "mutable_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "token_tree", + "named": true + } + ] + } + }, + { + "type": "trait_item", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "try_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "tuple_enum_pattern", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "generic_type", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + { + "type": "tuple_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "tuple_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + { + "type": "tuple_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + }, + { + "type": "type_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_literal", + "named": true + }, + { + "type": "_type", + "named": true + }, + { + "type": "block", + "named": true + } + ] + } + }, + { + "type": "type_item", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "extern_type", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "type_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute_item", + "named": true + }, + { + "type": "const_parameter", + "named": true + }, + { + "type": "constrained_type_parameter", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "generic_type_with_turbofish", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "unary_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "unit_expression", + "named": true, + "fields": {} + }, + { + "type": "unit_type", + "named": true, + "fields": {} + }, + { + "type": "use_as_clause", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "path": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + } + }, + { + "type": "use_declaration", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "scoped_use_list", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "use_as_clause", + "named": true + }, + { + "type": "use_list", + "named": true + }, + { + "type": "use_wildcard", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "visibility_modifier", + "named": true + } + ] + } + }, + { + "type": "use_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "scoped_use_list", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "use_as_clause", + "named": true + }, + { + "type": "use_list", + "named": true + }, + { + "type": "use_wildcard", + "named": true + } + ] + } + }, + { + "type": "use_wildcard", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + }, + { + "type": "visibility_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "crate", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + }, + { + "type": "super", + "named": true + } + ] + } + }, + { + "type": "while_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] + } + } + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "#", + "named": false + }, + { + "type": "$", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "const", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "crate", + "named": true + }, + { + "type": "default", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "extern", + "named": false + }, + { + "type": "false", + "named": false + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "fn", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "impl", + "named": false + }, + { + "type": "implicits", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "line_comment", + "named": true + }, + { + "type": "loop", + "named": false + }, + { + "type": "match", + "named": false + }, + { + "type": "mod", + "named": false + }, + { + "type": "mutable_specifier", + "named": true + }, + { + "type": "nopanic", + "named": false + }, + { + "type": "numeric_literal", + "named": true + }, + { + "type": "of", + "named": false + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "pub", + "named": false + }, + { + "type": "ref", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "shorthand_field_identifier", + "named": true + }, + { + "type": "shortstring_literal", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "struct", + "named": false + }, + { + "type": "super", + "named": true + }, + { + "type": "trait", + "named": false + }, + { + "type": "true", + "named": false + }, + { + "type": "type", + "named": false + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "use", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c new file mode 100644 index 0000000..ce3d3ae --- /dev/null +++ b/src/parser.c @@ -0,0 +1,69937 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1633 +#define LARGE_STATE_COUNT 221 +#define SYMBOL_COUNT 231 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 104 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 28 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define PRODUCTION_ID_COUNT 123 + +enum ts_symbol_identifiers { + anon_sym_LBRACE = 1, + anon_sym_RBRACE = 2, + anon_sym_impl = 3, + anon_sym_of = 4, + anon_sym_SEMI = 5, + anon_sym_trait = 6, + anon_sym_type = 7, + anon_sym_const = 8, + anon_sym_COLON = 9, + anon_sym_EQ = 10, + anon_sym_BANG = 11, + anon_sym_POUND = 12, + anon_sym_LBRACK = 13, + anon_sym_RBRACK = 14, + anon_sym_mod = 15, + anon_sym_struct = 16, + anon_sym_enum = 17, + anon_sym_COMMA = 18, + anon_sym_fn = 19, + anon_sym_DASH_GT = 20, + anon_sym_implicits = 21, + anon_sym_let = 22, + anon_sym_use = 23, + anon_sym_COLON_COLON = 24, + anon_sym_as = 25, + anon_sym_STAR = 26, + anon_sym_LPAREN = 27, + anon_sym__ = 28, + anon_sym_RPAREN = 29, + anon_sym_u8 = 30, + anon_sym_i8 = 31, + anon_sym_u16 = 32, + anon_sym_i16 = 33, + anon_sym_u32 = 34, + anon_sym_i32 = 35, + anon_sym_u64 = 36, + anon_sym_i64 = 37, + anon_sym_u128 = 38, + anon_sym_i128 = 39, + anon_sym_usize = 40, + anon_sym_bool = 41, + anon_sym_ByteArray = 42, + anon_sym_felt252 = 43, + anon_sym_LT = 44, + anon_sym_GT = 45, + anon_sym_PLUS = 46, + anon_sym_DASH = 47, + anon_sym_SLASH = 48, + anon_sym_PERCENT = 49, + anon_sym_CARET = 50, + anon_sym_TILDE = 51, + anon_sym_AMP = 52, + anon_sym_PIPE = 53, + anon_sym_AMP_AMP = 54, + anon_sym_PIPE_PIPE = 55, + anon_sym_LT_LT = 56, + anon_sym_GT_GT = 57, + anon_sym_PLUS_EQ = 58, + anon_sym_DASH_EQ = 59, + anon_sym_STAR_EQ = 60, + anon_sym_SLASH_EQ = 61, + anon_sym_PERCENT_EQ = 62, + anon_sym_CARET_EQ = 63, + anon_sym_AMP_EQ = 64, + anon_sym_PIPE_EQ = 65, + anon_sym_EQ_EQ = 66, + anon_sym_BANG_EQ = 67, + anon_sym_GT_EQ = 68, + anon_sym_LT_EQ = 69, + anon_sym_AT = 70, + anon_sym_DOT_DOT = 71, + anon_sym_DOT = 72, + anon_sym_EQ_GT = 73, + anon_sym_QMARK = 74, + anon_sym_break = 75, + anon_sym_continue = 76, + anon_sym_default = 77, + anon_sym_if = 78, + anon_sym_extern = 79, + anon_sym_nopanic = 80, + anon_sym_loop = 81, + anon_sym_match = 82, + anon_sym_pub = 83, + anon_sym_return = 84, + anon_sym_static = 85, + anon_sym_while = 86, + sym_numeric_literal = 87, + aux_sym_string_literal_token1 = 88, + aux_sym_string_literal_token2 = 89, + anon_sym_DQUOTE = 90, + sym_shortstring_literal = 91, + anon_sym_true = 92, + anon_sym_false = 93, + anon_sym_DOLLAR = 94, + anon_sym_LT2 = 95, + anon_sym_else = 96, + anon_sym_ref = 97, + sym_identifier = 98, + anon_sym_in = 99, + sym_mutable_specifier = 100, + sym_super = 101, + sym_crate = 102, + sym_line_comment = 103, + sym_source_file = 104, + sym__statement = 105, + sym_declaration_list = 106, + sym_impl_item = 107, + sym_trait_item = 108, + sym_associated_type = 109, + sym_const_item = 110, + sym_macro_invocation = 111, + sym_empty_statement = 112, + sym_attribute_item = 113, + sym_inner_attribute_item = 114, + sym_attribute = 115, + sym_mod_item = 116, + sym_struct_item = 117, + sym_enum_item = 118, + sym_enum_variant_list = 119, + sym_enum_variant = 120, + sym_field_declaration_list = 121, + sym_field_declaration = 122, + sym_type_item = 123, + sym_extern_type = 124, + sym_external_function_item = 125, + sym_function_item = 126, + sym_function_signature_item = 127, + sym_function = 128, + sym_let_declaration = 129, + sym_use_declaration = 130, + sym__use_clause = 131, + sym_scoped_use_list = 132, + sym_use_list = 133, + sym_use_as_clause = 134, + sym_use_wildcard = 135, + sym_parameters = 136, + sym_parameter = 137, + sym__type = 138, + sym_type_parameters = 139, + sym_const_parameter = 140, + sym_constrained_type_parameter = 141, + sym_generic_type = 142, + sym_generic_type_with_turbofish = 143, + sym_array_type = 144, + sym_delim_token_tree = 145, + sym__delim_tokens = 146, + sym__pattern = 147, + sym_tuple_pattern = 148, + sym_slice_pattern = 149, + sym_struct_pattern = 150, + sym_field_pattern = 151, + sym_field_initializer_list = 152, + sym_shorthand_field_initializer = 153, + sym_field_initializer = 154, + sym_base_field_initializer = 155, + sym_mut_pattern = 156, + sym_or_pattern = 157, + sym__literal = 158, + sym__literal_pattern = 159, + sym_negative_literal = 160, + sym_string_literal = 161, + sym_boolean_literal = 162, + sym__non_delim_token = 163, + sym_scoped_identifier = 164, + sym_scoped_type_identifier_in_expression_position = 165, + sym_scoped_type_identifier = 166, + sym_tuple_type = 167, + sym_unit_type = 168, + sym_type_arguments = 169, + sym_expression_statement = 170, + sym_expression = 171, + sym_generic_function = 172, + sym_tuple_expression = 173, + sym_return_expression = 174, + sym_struct_expression = 175, + sym_assignment_expression = 176, + sym_break_expression = 177, + sym_continue_expression = 178, + sym_index_expression = 179, + sym_array_expression = 180, + sym_parenthesized_expression = 181, + sym_unit_expression = 182, + sym_compound_assignment_expr = 183, + sym__expression_ending_with_block = 184, + sym_unary_expression = 185, + sym_try_expression = 186, + sym_field_expression = 187, + sym_block = 188, + sym_if_expression = 189, + sym__condition = 190, + sym_let_condition = 191, + sym_else_clause = 192, + sym_match_expression = 193, + sym_match_block = 194, + sym_match_arm = 195, + sym_last_match_arm = 196, + sym_tuple_enum_pattern = 197, + sym_match_pattern = 198, + sym_while_expression = 199, + sym_loop_expression = 200, + sym_binary_expression = 201, + sym_snapshot_type = 202, + sym_call_expression = 203, + sym_arguments = 204, + sym_named_argument = 205, + sym_reference_expression = 206, + sym_visibility_modifier = 207, + sym_extern = 208, + sym_nopanic = 209, + sym_ref_specifier = 210, + aux_sym_source_file_repeat1 = 211, + aux_sym_declaration_list_repeat1 = 212, + aux_sym_enum_variant_list_repeat1 = 213, + aux_sym_enum_variant_list_repeat2 = 214, + aux_sym_field_declaration_list_repeat1 = 215, + aux_sym_function_repeat1 = 216, + aux_sym_use_list_repeat1 = 217, + aux_sym_parameters_repeat1 = 218, + aux_sym_type_parameters_repeat1 = 219, + aux_sym_delim_token_tree_repeat1 = 220, + aux_sym__non_special_token_repeat1 = 221, + aux_sym_tuple_pattern_repeat1 = 222, + aux_sym_struct_pattern_repeat1 = 223, + aux_sym_field_initializer_list_repeat1 = 224, + aux_sym_type_arguments_repeat1 = 225, + aux_sym_tuple_expression_repeat1 = 226, + aux_sym_array_expression_repeat1 = 227, + aux_sym_match_block_repeat1 = 228, + aux_sym_match_arm_repeat1 = 229, + aux_sym_arguments_repeat1 = 230, + alias_sym_field_identifier = 231, + alias_sym_primitive_type = 232, + alias_sym_shorthand_field_identifier = 233, + alias_sym_type_identifier = 234, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_impl] = "impl", + [anon_sym_of] = "of", + [anon_sym_SEMI] = ";", + [anon_sym_trait] = "trait", + [anon_sym_type] = "type", + [anon_sym_const] = "const", + [anon_sym_COLON] = ":", + [anon_sym_EQ] = "=", + [anon_sym_BANG] = "!", + [anon_sym_POUND] = "#", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_mod] = "mod", + [anon_sym_struct] = "struct", + [anon_sym_enum] = "enum", + [anon_sym_COMMA] = ",", + [anon_sym_fn] = "fn", + [anon_sym_DASH_GT] = "->", + [anon_sym_implicits] = "implicits", + [anon_sym_let] = "let", + [anon_sym_use] = "use", + [anon_sym_COLON_COLON] = "::", + [anon_sym_as] = "as", + [anon_sym_STAR] = "*", + [anon_sym_LPAREN] = "(", + [anon_sym__] = "_", + [anon_sym_RPAREN] = ")", + [anon_sym_u8] = "identifier", + [anon_sym_i8] = "identifier", + [anon_sym_u16] = "identifier", + [anon_sym_i16] = "identifier", + [anon_sym_u32] = "identifier", + [anon_sym_i32] = "identifier", + [anon_sym_u64] = "identifier", + [anon_sym_i64] = "identifier", + [anon_sym_u128] = "identifier", + [anon_sym_i128] = "identifier", + [anon_sym_usize] = "identifier", + [anon_sym_bool] = "identifier", + [anon_sym_ByteArray] = "identifier", + [anon_sym_felt252] = "identifier", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_CARET] = "^", + [anon_sym_TILDE] = "~", + [anon_sym_AMP] = "&", + [anon_sym_PIPE] = "|", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_EQ] = "<=", + [anon_sym_AT] = "@", + [anon_sym_DOT_DOT] = "..", + [anon_sym_DOT] = ".", + [anon_sym_EQ_GT] = "=>", + [anon_sym_QMARK] = "\?", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_default] = "default", + [anon_sym_if] = "if", + [anon_sym_extern] = "extern", + [anon_sym_nopanic] = "nopanic", + [anon_sym_loop] = "loop", + [anon_sym_match] = "match", + [anon_sym_pub] = "pub", + [anon_sym_return] = "return", + [anon_sym_static] = "static", + [anon_sym_while] = "while", + [sym_numeric_literal] = "numeric_literal", + [aux_sym_string_literal_token1] = "\"", + [aux_sym_string_literal_token2] = "string_literal_token2", + [anon_sym_DQUOTE] = "\"", + [sym_shortstring_literal] = "shortstring_literal", + [anon_sym_true] = "true", + [anon_sym_false] = "false", + [anon_sym_DOLLAR] = "$", + [anon_sym_LT2] = "<", + [anon_sym_else] = "else", + [anon_sym_ref] = "ref", + [sym_identifier] = "identifier", + [anon_sym_in] = "in", + [sym_mutable_specifier] = "mutable_specifier", + [sym_super] = "super", + [sym_crate] = "crate", + [sym_line_comment] = "line_comment", + [sym_source_file] = "source_file", + [sym__statement] = "_statement", + [sym_declaration_list] = "declaration_list", + [sym_impl_item] = "impl_item", + [sym_trait_item] = "trait_item", + [sym_associated_type] = "associated_type", + [sym_const_item] = "const_item", + [sym_macro_invocation] = "macro_invocation", + [sym_empty_statement] = "empty_statement", + [sym_attribute_item] = "attribute_item", + [sym_inner_attribute_item] = "inner_attribute_item", + [sym_attribute] = "attribute", + [sym_mod_item] = "mod_item", + [sym_struct_item] = "struct_item", + [sym_enum_item] = "enum_item", + [sym_enum_variant_list] = "enum_variant_list", + [sym_enum_variant] = "enum_variant", + [sym_field_declaration_list] = "field_declaration_list", + [sym_field_declaration] = "field_declaration", + [sym_type_item] = "type_item", + [sym_extern_type] = "extern_type", + [sym_external_function_item] = "external_function_item", + [sym_function_item] = "function_item", + [sym_function_signature_item] = "function_signature_item", + [sym_function] = "function", + [sym_let_declaration] = "let_declaration", + [sym_use_declaration] = "use_declaration", + [sym__use_clause] = "_use_clause", + [sym_scoped_use_list] = "scoped_use_list", + [sym_use_list] = "use_list", + [sym_use_as_clause] = "use_as_clause", + [sym_use_wildcard] = "use_wildcard", + [sym_parameters] = "parameters", + [sym_parameter] = "parameter", + [sym__type] = "_type", + [sym_type_parameters] = "type_parameters", + [sym_const_parameter] = "const_parameter", + [sym_constrained_type_parameter] = "constrained_type_parameter", + [sym_generic_type] = "generic_type", + [sym_generic_type_with_turbofish] = "generic_type_with_turbofish", + [sym_array_type] = "array_type", + [sym_delim_token_tree] = "token_tree", + [sym__delim_tokens] = "_delim_tokens", + [sym__pattern] = "_pattern", + [sym_tuple_pattern] = "tuple_pattern", + [sym_slice_pattern] = "slice_pattern", + [sym_struct_pattern] = "struct_pattern", + [sym_field_pattern] = "field_pattern", + [sym_field_initializer_list] = "field_initializer_list", + [sym_shorthand_field_initializer] = "shorthand_field_initializer", + [sym_field_initializer] = "field_initializer", + [sym_base_field_initializer] = "base_field_initializer", + [sym_mut_pattern] = "mut_pattern", + [sym_or_pattern] = "or_pattern", + [sym__literal] = "_literal", + [sym__literal_pattern] = "_literal_pattern", + [sym_negative_literal] = "negative_literal", + [sym_string_literal] = "string_literal", + [sym_boolean_literal] = "boolean_literal", + [sym__non_delim_token] = "_non_delim_token", + [sym_scoped_identifier] = "scoped_identifier", + [sym_scoped_type_identifier_in_expression_position] = "scoped_type_identifier", + [sym_scoped_type_identifier] = "scoped_type_identifier", + [sym_tuple_type] = "tuple_type", + [sym_unit_type] = "unit_type", + [sym_type_arguments] = "type_arguments", + [sym_expression_statement] = "expression_statement", + [sym_expression] = "expression", + [sym_generic_function] = "generic_function", + [sym_tuple_expression] = "tuple_expression", + [sym_return_expression] = "return_expression", + [sym_struct_expression] = "struct_expression", + [sym_assignment_expression] = "assignment_expression", + [sym_break_expression] = "break_expression", + [sym_continue_expression] = "continue_expression", + [sym_index_expression] = "index_expression", + [sym_array_expression] = "array_expression", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_unit_expression] = "unit_expression", + [sym_compound_assignment_expr] = "compound_assignment_expr", + [sym__expression_ending_with_block] = "_expression_ending_with_block", + [sym_unary_expression] = "unary_expression", + [sym_try_expression] = "try_expression", + [sym_field_expression] = "field_expression", + [sym_block] = "block", + [sym_if_expression] = "if_expression", + [sym__condition] = "_condition", + [sym_let_condition] = "let_condition", + [sym_else_clause] = "else_clause", + [sym_match_expression] = "match_expression", + [sym_match_block] = "match_block", + [sym_match_arm] = "match_arm", + [sym_last_match_arm] = "match_arm", + [sym_tuple_enum_pattern] = "tuple_enum_pattern", + [sym_match_pattern] = "match_pattern", + [sym_while_expression] = "while_expression", + [sym_loop_expression] = "loop_expression", + [sym_binary_expression] = "binary_expression", + [sym_snapshot_type] = "snapshot_type", + [sym_call_expression] = "call_expression", + [sym_arguments] = "arguments", + [sym_named_argument] = "named_argument", + [sym_reference_expression] = "reference_expression", + [sym_visibility_modifier] = "visibility_modifier", + [sym_extern] = "extern", + [sym_nopanic] = "nopanic", + [sym_ref_specifier] = "ref_specifier", + [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", + [aux_sym_enum_variant_list_repeat1] = "enum_variant_list_repeat1", + [aux_sym_enum_variant_list_repeat2] = "enum_variant_list_repeat2", + [aux_sym_field_declaration_list_repeat1] = "field_declaration_list_repeat1", + [aux_sym_function_repeat1] = "function_repeat1", + [aux_sym_use_list_repeat1] = "use_list_repeat1", + [aux_sym_parameters_repeat1] = "parameters_repeat1", + [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", + [aux_sym_delim_token_tree_repeat1] = "delim_token_tree_repeat1", + [aux_sym__non_special_token_repeat1] = "_non_special_token_repeat1", + [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", + [aux_sym_struct_pattern_repeat1] = "struct_pattern_repeat1", + [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", + [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", + [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", + [aux_sym_array_expression_repeat1] = "array_expression_repeat1", + [aux_sym_match_block_repeat1] = "match_block_repeat1", + [aux_sym_match_arm_repeat1] = "match_arm_repeat1", + [aux_sym_arguments_repeat1] = "arguments_repeat1", + [alias_sym_field_identifier] = "field_identifier", + [alias_sym_primitive_type] = "primitive_type", + [alias_sym_shorthand_field_identifier] = "shorthand_field_identifier", + [alias_sym_type_identifier] = "type_identifier", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_impl] = anon_sym_impl, + [anon_sym_of] = anon_sym_of, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_trait] = anon_sym_trait, + [anon_sym_type] = anon_sym_type, + [anon_sym_const] = anon_sym_const, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_mod] = anon_sym_mod, + [anon_sym_struct] = anon_sym_struct, + [anon_sym_enum] = anon_sym_enum, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_fn] = anon_sym_fn, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_implicits] = anon_sym_implicits, + [anon_sym_let] = anon_sym_let, + [anon_sym_use] = anon_sym_use, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_as] = anon_sym_as, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym__] = anon_sym__, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_u8] = sym_identifier, + [anon_sym_i8] = sym_identifier, + [anon_sym_u16] = sym_identifier, + [anon_sym_i16] = sym_identifier, + [anon_sym_u32] = sym_identifier, + [anon_sym_i32] = sym_identifier, + [anon_sym_u64] = sym_identifier, + [anon_sym_i64] = sym_identifier, + [anon_sym_u128] = sym_identifier, + [anon_sym_i128] = sym_identifier, + [anon_sym_usize] = sym_identifier, + [anon_sym_bool] = sym_identifier, + [anon_sym_ByteArray] = sym_identifier, + [anon_sym_felt252] = sym_identifier, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_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_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_default] = anon_sym_default, + [anon_sym_if] = anon_sym_if, + [anon_sym_extern] = anon_sym_extern, + [anon_sym_nopanic] = anon_sym_nopanic, + [anon_sym_loop] = anon_sym_loop, + [anon_sym_match] = anon_sym_match, + [anon_sym_pub] = anon_sym_pub, + [anon_sym_return] = anon_sym_return, + [anon_sym_static] = anon_sym_static, + [anon_sym_while] = anon_sym_while, + [sym_numeric_literal] = sym_numeric_literal, + [aux_sym_string_literal_token1] = anon_sym_DQUOTE, + [aux_sym_string_literal_token2] = aux_sym_string_literal_token2, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [sym_shortstring_literal] = sym_shortstring_literal, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_LT2] = anon_sym_LT, + [anon_sym_else] = anon_sym_else, + [anon_sym_ref] = anon_sym_ref, + [sym_identifier] = sym_identifier, + [anon_sym_in] = anon_sym_in, + [sym_mutable_specifier] = sym_mutable_specifier, + [sym_super] = sym_super, + [sym_crate] = sym_crate, + [sym_line_comment] = sym_line_comment, + [sym_source_file] = sym_source_file, + [sym__statement] = sym__statement, + [sym_declaration_list] = sym_declaration_list, + [sym_impl_item] = sym_impl_item, + [sym_trait_item] = sym_trait_item, + [sym_associated_type] = sym_associated_type, + [sym_const_item] = sym_const_item, + [sym_macro_invocation] = sym_macro_invocation, + [sym_empty_statement] = sym_empty_statement, + [sym_attribute_item] = sym_attribute_item, + [sym_inner_attribute_item] = sym_inner_attribute_item, + [sym_attribute] = sym_attribute, + [sym_mod_item] = sym_mod_item, + [sym_struct_item] = sym_struct_item, + [sym_enum_item] = sym_enum_item, + [sym_enum_variant_list] = sym_enum_variant_list, + [sym_enum_variant] = sym_enum_variant, + [sym_field_declaration_list] = sym_field_declaration_list, + [sym_field_declaration] = sym_field_declaration, + [sym_type_item] = sym_type_item, + [sym_extern_type] = sym_extern_type, + [sym_external_function_item] = sym_external_function_item, + [sym_function_item] = sym_function_item, + [sym_function_signature_item] = sym_function_signature_item, + [sym_function] = sym_function, + [sym_let_declaration] = sym_let_declaration, + [sym_use_declaration] = sym_use_declaration, + [sym__use_clause] = sym__use_clause, + [sym_scoped_use_list] = sym_scoped_use_list, + [sym_use_list] = sym_use_list, + [sym_use_as_clause] = sym_use_as_clause, + [sym_use_wildcard] = sym_use_wildcard, + [sym_parameters] = sym_parameters, + [sym_parameter] = sym_parameter, + [sym__type] = sym__type, + [sym_type_parameters] = sym_type_parameters, + [sym_const_parameter] = sym_const_parameter, + [sym_constrained_type_parameter] = sym_constrained_type_parameter, + [sym_generic_type] = sym_generic_type, + [sym_generic_type_with_turbofish] = sym_generic_type_with_turbofish, + [sym_array_type] = sym_array_type, + [sym_delim_token_tree] = sym_delim_token_tree, + [sym__delim_tokens] = sym__delim_tokens, + [sym__pattern] = sym__pattern, + [sym_tuple_pattern] = sym_tuple_pattern, + [sym_slice_pattern] = sym_slice_pattern, + [sym_struct_pattern] = sym_struct_pattern, + [sym_field_pattern] = sym_field_pattern, + [sym_field_initializer_list] = sym_field_initializer_list, + [sym_shorthand_field_initializer] = sym_shorthand_field_initializer, + [sym_field_initializer] = sym_field_initializer, + [sym_base_field_initializer] = sym_base_field_initializer, + [sym_mut_pattern] = sym_mut_pattern, + [sym_or_pattern] = sym_or_pattern, + [sym__literal] = sym__literal, + [sym__literal_pattern] = sym__literal_pattern, + [sym_negative_literal] = sym_negative_literal, + [sym_string_literal] = sym_string_literal, + [sym_boolean_literal] = sym_boolean_literal, + [sym__non_delim_token] = sym__non_delim_token, + [sym_scoped_identifier] = sym_scoped_identifier, + [sym_scoped_type_identifier_in_expression_position] = sym_scoped_type_identifier, + [sym_scoped_type_identifier] = sym_scoped_type_identifier, + [sym_tuple_type] = sym_tuple_type, + [sym_unit_type] = sym_unit_type, + [sym_type_arguments] = sym_type_arguments, + [sym_expression_statement] = sym_expression_statement, + [sym_expression] = sym_expression, + [sym_generic_function] = sym_generic_function, + [sym_tuple_expression] = sym_tuple_expression, + [sym_return_expression] = sym_return_expression, + [sym_struct_expression] = sym_struct_expression, + [sym_assignment_expression] = sym_assignment_expression, + [sym_break_expression] = sym_break_expression, + [sym_continue_expression] = sym_continue_expression, + [sym_index_expression] = sym_index_expression, + [sym_array_expression] = sym_array_expression, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_unit_expression] = sym_unit_expression, + [sym_compound_assignment_expr] = sym_compound_assignment_expr, + [sym__expression_ending_with_block] = sym__expression_ending_with_block, + [sym_unary_expression] = sym_unary_expression, + [sym_try_expression] = sym_try_expression, + [sym_field_expression] = sym_field_expression, + [sym_block] = sym_block, + [sym_if_expression] = sym_if_expression, + [sym__condition] = sym__condition, + [sym_let_condition] = sym_let_condition, + [sym_else_clause] = sym_else_clause, + [sym_match_expression] = sym_match_expression, + [sym_match_block] = sym_match_block, + [sym_match_arm] = sym_match_arm, + [sym_last_match_arm] = sym_match_arm, + [sym_tuple_enum_pattern] = sym_tuple_enum_pattern, + [sym_match_pattern] = sym_match_pattern, + [sym_while_expression] = sym_while_expression, + [sym_loop_expression] = sym_loop_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_snapshot_type] = sym_snapshot_type, + [sym_call_expression] = sym_call_expression, + [sym_arguments] = sym_arguments, + [sym_named_argument] = sym_named_argument, + [sym_reference_expression] = sym_reference_expression, + [sym_visibility_modifier] = sym_visibility_modifier, + [sym_extern] = sym_extern, + [sym_nopanic] = sym_nopanic, + [sym_ref_specifier] = sym_ref_specifier, + [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, + [aux_sym_enum_variant_list_repeat1] = aux_sym_enum_variant_list_repeat1, + [aux_sym_enum_variant_list_repeat2] = aux_sym_enum_variant_list_repeat2, + [aux_sym_field_declaration_list_repeat1] = aux_sym_field_declaration_list_repeat1, + [aux_sym_function_repeat1] = aux_sym_function_repeat1, + [aux_sym_use_list_repeat1] = aux_sym_use_list_repeat1, + [aux_sym_parameters_repeat1] = aux_sym_parameters_repeat1, + [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, + [aux_sym_delim_token_tree_repeat1] = aux_sym_delim_token_tree_repeat1, + [aux_sym__non_special_token_repeat1] = aux_sym__non_special_token_repeat1, + [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, + [aux_sym_struct_pattern_repeat1] = aux_sym_struct_pattern_repeat1, + [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, + [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, + [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, + [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, + [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, + [aux_sym_match_arm_repeat1] = aux_sym_match_arm_repeat1, + [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, + [alias_sym_field_identifier] = alias_sym_field_identifier, + [alias_sym_primitive_type] = alias_sym_primitive_type, + [alias_sym_shorthand_field_identifier] = alias_sym_shorthand_field_identifier, + [alias_sym_type_identifier] = alias_sym_type_identifier, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_impl] = { + .visible = true, + .named = false, + }, + [anon_sym_of] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_trait] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_mod] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = false, + }, + [anon_sym_enum] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_fn] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_implicits] = { + .visible = true, + .named = false, + }, + [anon_sym_let] = { + .visible = true, + .named = false, + }, + [anon_sym_use] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_u8] = { + .visible = true, + .named = true, + }, + [anon_sym_i8] = { + .visible = true, + .named = true, + }, + [anon_sym_u16] = { + .visible = true, + .named = true, + }, + [anon_sym_i16] = { + .visible = true, + .named = true, + }, + [anon_sym_u32] = { + .visible = true, + .named = true, + }, + [anon_sym_i32] = { + .visible = true, + .named = true, + }, + [anon_sym_u64] = { + .visible = true, + .named = true, + }, + [anon_sym_i64] = { + .visible = true, + .named = true, + }, + [anon_sym_u128] = { + .visible = true, + .named = true, + }, + [anon_sym_i128] = { + .visible = true, + .named = true, + }, + [anon_sym_usize] = { + .visible = true, + .named = true, + }, + [anon_sym_bool] = { + .visible = true, + .named = true, + }, + [anon_sym_ByteArray] = { + .visible = true, + .named = true, + }, + [anon_sym_felt252] = { + .visible = true, + .named = true, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_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_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_default] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_extern] = { + .visible = true, + .named = false, + }, + [anon_sym_nopanic] = { + .visible = true, + .named = false, + }, + [anon_sym_loop] = { + .visible = true, + .named = false, + }, + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_pub] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [sym_numeric_literal] = { + .visible = true, + .named = true, + }, + [aux_sym_string_literal_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_string_literal_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [sym_shortstring_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_LT2] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_ref] = { + .visible = true, + .named = false, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [sym_mutable_specifier] = { + .visible = true, + .named = true, + }, + [sym_super] = { + .visible = true, + .named = true, + }, + [sym_crate] = { + .visible = true, + .named = true, + }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_impl_item] = { + .visible = true, + .named = true, + }, + [sym_trait_item] = { + .visible = true, + .named = true, + }, + [sym_associated_type] = { + .visible = true, + .named = true, + }, + [sym_const_item] = { + .visible = true, + .named = true, + }, + [sym_macro_invocation] = { + .visible = true, + .named = true, + }, + [sym_empty_statement] = { + .visible = true, + .named = true, + }, + [sym_attribute_item] = { + .visible = true, + .named = true, + }, + [sym_inner_attribute_item] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_mod_item] = { + .visible = true, + .named = true, + }, + [sym_struct_item] = { + .visible = true, + .named = true, + }, + [sym_enum_item] = { + .visible = true, + .named = true, + }, + [sym_enum_variant_list] = { + .visible = true, + .named = true, + }, + [sym_enum_variant] = { + .visible = true, + .named = true, + }, + [sym_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_field_declaration] = { + .visible = true, + .named = true, + }, + [sym_type_item] = { + .visible = true, + .named = true, + }, + [sym_extern_type] = { + .visible = true, + .named = true, + }, + [sym_external_function_item] = { + .visible = true, + .named = true, + }, + [sym_function_item] = { + .visible = true, + .named = true, + }, + [sym_function_signature_item] = { + .visible = true, + .named = true, + }, + [sym_function] = { + .visible = true, + .named = true, + }, + [sym_let_declaration] = { + .visible = true, + .named = true, + }, + [sym_use_declaration] = { + .visible = true, + .named = true, + }, + [sym__use_clause] = { + .visible = false, + .named = true, + }, + [sym_scoped_use_list] = { + .visible = true, + .named = true, + }, + [sym_use_list] = { + .visible = true, + .named = true, + }, + [sym_use_as_clause] = { + .visible = true, + .named = true, + }, + [sym_use_wildcard] = { + .visible = true, + .named = true, + }, + [sym_parameters] = { + .visible = true, + .named = true, + }, + [sym_parameter] = { + .visible = true, + .named = true, + }, + [sym__type] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_type_parameters] = { + .visible = true, + .named = true, + }, + [sym_const_parameter] = { + .visible = true, + .named = true, + }, + [sym_constrained_type_parameter] = { + .visible = true, + .named = true, + }, + [sym_generic_type] = { + .visible = true, + .named = true, + }, + [sym_generic_type_with_turbofish] = { + .visible = true, + .named = true, + }, + [sym_array_type] = { + .visible = true, + .named = true, + }, + [sym_delim_token_tree] = { + .visible = true, + .named = true, + }, + [sym__delim_tokens] = { + .visible = false, + .named = true, + }, + [sym__pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tuple_pattern] = { + .visible = true, + .named = true, + }, + [sym_slice_pattern] = { + .visible = true, + .named = true, + }, + [sym_struct_pattern] = { + .visible = true, + .named = true, + }, + [sym_field_pattern] = { + .visible = true, + .named = true, + }, + [sym_field_initializer_list] = { + .visible = true, + .named = true, + }, + [sym_shorthand_field_initializer] = { + .visible = true, + .named = true, + }, + [sym_field_initializer] = { + .visible = true, + .named = true, + }, + [sym_base_field_initializer] = { + .visible = true, + .named = true, + }, + [sym_mut_pattern] = { + .visible = true, + .named = true, + }, + [sym_or_pattern] = { + .visible = true, + .named = true, + }, + [sym__literal] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__literal_pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_negative_literal] = { + .visible = true, + .named = true, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym_boolean_literal] = { + .visible = true, + .named = true, + }, + [sym__non_delim_token] = { + .visible = false, + .named = true, + }, + [sym_scoped_identifier] = { + .visible = true, + .named = true, + }, + [sym_scoped_type_identifier_in_expression_position] = { + .visible = true, + .named = true, + }, + [sym_scoped_type_identifier] = { + .visible = true, + .named = true, + }, + [sym_tuple_type] = { + .visible = true, + .named = true, + }, + [sym_unit_type] = { + .visible = true, + .named = true, + }, + [sym_type_arguments] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_generic_function] = { + .visible = true, + .named = true, + }, + [sym_tuple_expression] = { + .visible = true, + .named = true, + }, + [sym_return_expression] = { + .visible = true, + .named = true, + }, + [sym_struct_expression] = { + .visible = true, + .named = true, + }, + [sym_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym_break_expression] = { + .visible = true, + .named = true, + }, + [sym_continue_expression] = { + .visible = true, + .named = true, + }, + [sym_index_expression] = { + .visible = true, + .named = true, + }, + [sym_array_expression] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_unit_expression] = { + .visible = true, + .named = true, + }, + [sym_compound_assignment_expr] = { + .visible = true, + .named = true, + }, + [sym__expression_ending_with_block] = { + .visible = false, + .named = true, + }, + [sym_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_try_expression] = { + .visible = true, + .named = true, + }, + [sym_field_expression] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_if_expression] = { + .visible = true, + .named = true, + }, + [sym__condition] = { + .visible = false, + .named = true, + }, + [sym_let_condition] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_match_expression] = { + .visible = true, + .named = true, + }, + [sym_match_block] = { + .visible = true, + .named = true, + }, + [sym_match_arm] = { + .visible = true, + .named = true, + }, + [sym_last_match_arm] = { + .visible = true, + .named = true, + }, + [sym_tuple_enum_pattern] = { + .visible = true, + .named = true, + }, + [sym_match_pattern] = { + .visible = true, + .named = true, + }, + [sym_while_expression] = { + .visible = true, + .named = true, + }, + [sym_loop_expression] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_snapshot_type] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_arguments] = { + .visible = true, + .named = true, + }, + [sym_named_argument] = { + .visible = true, + .named = true, + }, + [sym_reference_expression] = { + .visible = true, + .named = true, + }, + [sym_visibility_modifier] = { + .visible = true, + .named = true, + }, + [sym_extern] = { + .visible = true, + .named = true, + }, + [sym_nopanic] = { + .visible = true, + .named = true, + }, + [sym_ref_specifier] = { + .visible = true, + .named = true, + }, + [aux_sym_source_file_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_variant_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_variant_list_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_field_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_use_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_delim_token_tree_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__non_special_token_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_struct_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_field_initializer_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_arm_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_field_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_primitive_type] = { + .visible = true, + .named = true, + }, + [alias_sym_shorthand_field_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_type_identifier] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_body = 5, + field_bound = 6, + field_condition = 7, + field_consequence = 8, + field_element = 9, + field_field = 10, + field_function = 11, + field_implicit_arguments = 12, + field_left = 13, + field_length = 14, + field_list = 15, + field_macro = 16, + field_name = 17, + field_operator = 18, + field_parameters = 19, + field_path = 20, + field_pattern = 21, + field_return_type = 22, + field_right = 23, + field_type = 24, + field_type_arguments = 25, + field_type_parameters = 26, + field_value = 27, + field_variant = 28, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_body] = "body", + [field_bound] = "bound", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_element] = "element", + [field_field] = "field", + [field_function] = "function", + [field_implicit_arguments] = "implicit_arguments", + [field_left] = "left", + [field_length] = "length", + [field_list] = "list", + [field_macro] = "macro", + [field_name] = "name", + [field_operator] = "operator", + [field_parameters] = "parameters", + [field_path] = "path", + [field_pattern] = "pattern", + [field_return_type] = "return_type", + [field_right] = "right", + [field_type] = "type", + [field_type_arguments] = "type_arguments", + [field_type_parameters] = "type_parameters", + [field_value] = "value", + [field_variant] = "variant", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 1}, + [3] = {.index = 0, .length = 1}, + [4] = {.index = 1, .length = 1}, + [5] = {.index = 2, .length = 1}, + [6] = {.index = 3, .length = 2}, + [7] = {.index = 3, .length = 2}, + [8] = {.index = 5, .length = 2}, + [9] = {.index = 7, .length = 2}, + [10] = {.index = 7, .length = 2}, + [11] = {.index = 9, .length = 2}, + [12] = {.index = 11, .length = 2}, + [13] = {.index = 11, .length = 2}, + [14] = {.index = 13, .length = 1}, + [15] = {.index = 11, .length = 2}, + [16] = {.index = 14, .length = 1}, + [17] = {.index = 15, .length = 1}, + [18] = {.index = 16, .length = 2}, + [19] = {.index = 16, .length = 2}, + [20] = {.index = 18, .length = 1}, + [21] = {.index = 16, .length = 2}, + [22] = {.index = 16, .length = 2}, + [23] = {.index = 19, .length = 2}, + [24] = {.index = 21, .length = 2}, + [25] = {.index = 23, .length = 2}, + [26] = {.index = 25, .length = 2}, + [27] = {.index = 27, .length = 1}, + [28] = {.index = 18, .length = 1}, + [29] = {.index = 19, .length = 2}, + [30] = {.index = 28, .length = 2}, + [31] = {.index = 16, .length = 2}, + [32] = {.index = 16, .length = 2}, + [33] = {.index = 19, .length = 2}, + [34] = {.index = 30, .length = 2}, + [35] = {.index = 32, .length = 3}, + [36] = {.index = 35, .length = 2}, + [37] = {.index = 35, .length = 2}, + [38] = {.index = 37, .length = 1}, + [41] = {.index = 38, .length = 2}, + [42] = {.index = 40, .length = 3}, + [43] = {.index = 43, .length = 1}, + [44] = {.index = 43, .length = 1}, + [45] = {.index = 44, .length = 1}, + [46] = {.index = 45, .length = 3}, + [47] = {.index = 48, .length = 3}, + [48] = {.index = 51, .length = 1}, + [49] = {.index = 52, .length = 1}, + [50] = {.index = 51, .length = 1}, + [51] = {.index = 53, .length = 1}, + [52] = {.index = 51, .length = 1}, + [53] = {.index = 54, .length = 2}, + [54] = {.index = 56, .length = 2}, + [55] = {.index = 54, .length = 2}, + [56] = {.index = 56, .length = 2}, + [57] = {.index = 58, .length = 3}, + [58] = {.index = 61, .length = 1}, + [59] = {.index = 62, .length = 2}, + [60] = {.index = 61, .length = 1}, + [61] = {.index = 62, .length = 2}, + [62] = {.index = 64, .length = 1}, + [63] = {.index = 65, .length = 1}, + [64] = {.index = 66, .length = 1}, + [65] = {.index = 67, .length = 2}, + [67] = {.index = 67, .length = 2}, + [68] = {.index = 27, .length = 1}, + [69] = {.index = 69, .length = 1}, + [70] = {.index = 70, .length = 1}, + [71] = {.index = 71, .length = 3}, + [72] = {.index = 74, .length = 4}, + [73] = {.index = 78, .length = 4}, + [74] = {.index = 0, .length = 1}, + [75] = {.index = 82, .length = 2}, + [76] = {.index = 84, .length = 2}, + [78] = {.index = 86, .length = 2}, + [79] = {.index = 86, .length = 2}, + [80] = {.index = 88, .length = 2}, + [81] = {.index = 90, .length = 3}, + [82] = {.index = 93, .length = 1}, + [83] = {.index = 94, .length = 1}, + [85] = {.index = 95, .length = 1}, + [86] = {.index = 96, .length = 2}, + [87] = {.index = 98, .length = 3}, + [88] = {.index = 101, .length = 1}, + [89] = {.index = 102, .length = 2}, + [90] = {.index = 104, .length = 2}, + [91] = {.index = 106, .length = 4}, + [92] = {.index = 110, .length = 5}, + [93] = {.index = 115, .length = 4}, + [94] = {.index = 119, .length = 5}, + [95] = {.index = 124, .length = 2}, + [96] = {.index = 126, .length = 2}, + [97] = {.index = 128, .length = 2}, + [98] = {.index = 130, .length = 1}, + [99] = {.index = 131, .length = 2}, + [100] = {.index = 133, .length = 2}, + [101] = {.index = 133, .length = 2}, + [102] = {.index = 135, .length = 1}, + [103] = {.index = 136, .length = 2}, + [104] = {.index = 136, .length = 2}, + [105] = {.index = 138, .length = 2}, + [106] = {.index = 140, .length = 4}, + [107] = {.index = 144, .length = 3}, + [108] = {.index = 67, .length = 2}, + [109] = {.index = 147, .length = 5}, + [110] = {.index = 152, .length = 5}, + [111] = {.index = 157, .length = 6}, + [112] = {.index = 163, .length = 2}, + [113] = {.index = 165, .length = 3}, + [114] = {.index = 168, .length = 1}, + [115] = {.index = 169, .length = 2}, + [116] = {.index = 171, .length = 3}, + [117] = {.index = 174, .length = 2}, + [118] = {.index = 176, .length = 6}, + [119] = {.index = 182, .length = 6}, + [120] = {.index = 188, .length = 3}, + [121] = {.index = 191, .length = 3}, + [122] = {.index = 194, .length = 7}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_name, 1}, + [1] = + {field_body, 1}, + [2] = + {field_value, 1}, + [3] = + {field_body, 1}, + {field_name, 0}, + [5] = + {field_arguments, 1}, + {field_function, 0}, + [7] = + {field_body, 2}, + {field_name, 1}, + [9] = + {field_name, 1}, + {field_parameters, 2}, + [11] = + {field_type, 0}, + {field_type_arguments, 1}, + [13] = + {field_pattern, 1}, + [14] = + {field_list, 1}, + [15] = + {field_argument, 1}, + [16] = + {field_name, 2}, + {field_path, 0}, + [18] = + {field_macro, 0}, + [19] = + {field_type, 0}, + {field_type_arguments, 2}, + [21] = + {field_condition, 1}, + {field_consequence, 2}, + [23] = + {field_body, 2}, + {field_value, 1}, + [25] = + {field_body, 2}, + {field_condition, 1}, + [27] = + {field_value, 2}, + [28] = + {field_function, 0}, + {field_type_arguments, 2}, + [30] = + {field_left, 0}, + {field_right, 2}, + [32] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [35] = + {field_field, 2}, + {field_value, 0}, + [37] = + {field_body, 2}, + [38] = + {field_name, 1}, + {field_type_parameters, 2}, + [40] = + {field_body, 3}, + {field_name, 1}, + {field_type_parameters, 2}, + [43] = + {field_arguments, 1}, + [44] = + {field_variant, 0}, + [45] = + {field_implicit_arguments, 3}, + {field_name, 1}, + {field_parameters, 2}, + [48] = + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [51] = + {field_type, 0}, + [52] = + {field_name, 0}, + [53] = + {field_pattern, 2}, + [54] = + {field_list, 2}, + {field_path, 0}, + [56] = + {field_alias, 2}, + {field_path, 0}, + [58] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [61] = + {field_name, 2}, + [62] = + {field_body, 3}, + {field_name, 2}, + [64] = + {field_argument, 2}, + [65] = + {field_type, 1}, + [66] = + {field_body, 4}, + [67] = + {field_name, 1}, + {field_type, 3}, + [69] = + {field_length, 3}, + [70] = + {field_variant, 1}, + [71] = + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [74] = + {field_implicit_arguments, 3}, + {field_implicit_arguments, 4}, + {field_name, 1}, + {field_parameters, 2}, + [78] = + {field_implicit_arguments, 4}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [82] = + {field_pattern, 1}, + {field_type, 3}, + [84] = + {field_pattern, 1}, + {field_value, 3}, + [86] = + {field_field, 0}, + {field_value, 2}, + [88] = + {field_name, 2}, + {field_type_parameters, 3}, + [90] = + {field_body, 4}, + {field_name, 2}, + {field_type_parameters, 3}, + [93] = + {field_name, 3}, + [94] = + {field_element, 1}, + [95] = + {field_type_parameters, 2}, + [96] = + {field_body, 5}, + {field_type_parameters, 2}, + [98] = + {field_name, 1}, + {field_type, 4}, + {field_type_parameters, 2}, + [101] = + {field_length, 4}, + [102] = + {field_name, 0}, + {field_type, 2}, + [104] = + {field_pattern, 0}, + {field_type, 2}, + [106] = + {field_implicit_arguments, 5}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [110] = + {field_implicit_arguments, 3}, + {field_implicit_arguments, 4}, + {field_implicit_arguments, 5}, + {field_name, 1}, + {field_parameters, 2}, + [115] = + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [119] = + {field_implicit_arguments, 4}, + {field_implicit_arguments, 5}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [124] = + {field_name, 0}, + {field_pattern, 2}, + [126] = + {field_pattern, 2}, + {field_type, 4}, + [128] = + {field_pattern, 2}, + {field_value, 4}, + [130] = + {field_condition, 2}, + [131] = + {field_pattern, 0}, + {field_value, 2}, + [133] = + {field_field, 1}, + {field_value, 3}, + [135] = + {field_body, 5}, + [136] = + {field_name, 2}, + {field_type, 4}, + [138] = + {field_name, 3}, + {field_type_parameters, 4}, + [140] = + {field_bound, 3}, + {field_left, 0}, + {field_left, 1}, + {field_left, 2}, + [144] = + {field_name, 1}, + {field_type, 3}, + {field_value, 5}, + [147] = + {field_implicit_arguments, 5}, + {field_implicit_arguments, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [152] = + {field_implicit_arguments, 6}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [157] = + {field_implicit_arguments, 4}, + {field_implicit_arguments, 5}, + {field_implicit_arguments, 6}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [163] = + {field_name, 1}, + {field_pattern, 3}, + [165] = + {field_pattern, 1}, + {field_type, 3}, + {field_value, 5}, + [168] = + {field_type_parameters, 3}, + [169] = + {field_body, 6}, + {field_type_parameters, 3}, + [171] = + {field_name, 2}, + {field_type, 5}, + {field_type_parameters, 3}, + [174] = + {field_element, 1}, + {field_length, 3}, + [176] = + {field_implicit_arguments, 5}, + {field_implicit_arguments, 6}, + {field_implicit_arguments, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [182] = + {field_implicit_arguments, 6}, + {field_implicit_arguments, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [188] = + {field_pattern, 2}, + {field_type, 4}, + {field_value, 6}, + [191] = + {field_name, 2}, + {field_type, 4}, + {field_value, 6}, + [194] = + {field_implicit_arguments, 6}, + {field_implicit_arguments, 7}, + {field_implicit_arguments, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [3] = { + [1] = alias_sym_type_identifier, + }, + [6] = { + [0] = alias_sym_type_identifier, + }, + [9] = { + [1] = alias_sym_type_identifier, + }, + [12] = { + [0] = sym_identifier, + }, + [13] = { + [0] = alias_sym_type_identifier, + }, + [19] = { + [2] = alias_sym_type_identifier, + }, + [20] = { + [0] = sym_identifier, + }, + [21] = { + [0] = sym_identifier, + }, + [22] = { + [0] = sym_identifier, + [2] = alias_sym_type_identifier, + }, + [23] = { + [0] = sym_identifier, + }, + [29] = { + [0] = alias_sym_type_identifier, + }, + [31] = { + [0] = sym_generic_type, + }, + [32] = { + [0] = sym_generic_type, + [2] = alias_sym_type_identifier, + }, + [37] = { + [2] = alias_sym_field_identifier, + }, + [39] = { + [0] = alias_sym_primitive_type, + }, + [40] = { + [0] = alias_sym_type_identifier, + }, + [41] = { + [1] = alias_sym_type_identifier, + }, + [42] = { + [1] = alias_sym_type_identifier, + }, + [44] = { + [0] = sym_identifier, + }, + [48] = { + [0] = alias_sym_type_identifier, + }, + [49] = { + [0] = alias_sym_shorthand_field_identifier, + }, + [52] = { + [0] = sym_generic_type, + }, + [55] = { + [0] = sym_identifier, + }, + [56] = { + [0] = sym_identifier, + }, + [58] = { + [2] = alias_sym_type_identifier, + }, + [59] = { + [2] = alias_sym_type_identifier, + }, + [65] = { + [1] = alias_sym_type_identifier, + }, + [66] = { + [1] = alias_sym_type_identifier, + }, + [68] = { + [0] = sym_identifier, + }, + [74] = { + [1] = alias_sym_shorthand_field_identifier, + }, + [77] = { + [3] = sym_identifier, + }, + [79] = { + [0] = alias_sym_field_identifier, + }, + [80] = { + [2] = alias_sym_type_identifier, + }, + [81] = { + [2] = alias_sym_type_identifier, + }, + [82] = { + [3] = alias_sym_type_identifier, + }, + [84] = { + [2] = alias_sym_type_identifier, + }, + [87] = { + [1] = alias_sym_type_identifier, + }, + [89] = { + [0] = alias_sym_field_identifier, + }, + [95] = { + [0] = alias_sym_field_identifier, + }, + [101] = { + [1] = alias_sym_field_identifier, + }, + [103] = { + [2] = alias_sym_type_identifier, + }, + [105] = { + [3] = alias_sym_type_identifier, + }, + [106] = { + [1] = alias_sym_type_identifier, + }, + [108] = { + [1] = alias_sym_field_identifier, + }, + [112] = { + [1] = alias_sym_field_identifier, + }, + [116] = { + [2] = alias_sym_type_identifier, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym_generic_type_with_turbofish, 2, + sym_generic_type_with_turbofish, + sym_generic_type, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 4, + [6] = 4, + [7] = 3, + [8] = 3, + [9] = 3, + [10] = 3, + [11] = 3, + [12] = 4, + [13] = 13, + [14] = 4, + [15] = 3, + [16] = 3, + [17] = 4, + [18] = 4, + [19] = 4, + [20] = 13, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 24, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 27, + [31] = 28, + [32] = 27, + [33] = 29, + [34] = 34, + [35] = 24, + [36] = 26, + [37] = 28, + [38] = 27, + [39] = 29, + [40] = 27, + [41] = 26, + [42] = 26, + [43] = 34, + [44] = 34, + [45] = 26, + [46] = 34, + [47] = 34, + [48] = 24, + [49] = 29, + [50] = 28, + [51] = 29, + [52] = 24, + [53] = 28, + [54] = 21, + [55] = 23, + [56] = 21, + [57] = 23, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 64, + [73] = 73, + [74] = 74, + [75] = 62, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 74, + [85] = 79, + [86] = 81, + [87] = 87, + [88] = 88, + [89] = 89, + [90] = 87, + [91] = 91, + [92] = 91, + [93] = 93, + [94] = 88, + [95] = 95, + [96] = 95, + [97] = 93, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 99, + [102] = 102, + [103] = 103, + [104] = 98, + [105] = 102, + [106] = 103, + [107] = 107, + [108] = 108, + [109] = 108, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 110, + [115] = 113, + [116] = 112, + [117] = 111, + [118] = 118, + [119] = 118, + [120] = 120, + [121] = 121, + [122] = 118, + [123] = 123, + [124] = 124, + [125] = 118, + [126] = 126, + [127] = 124, + [128] = 121, + [129] = 121, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 131, + [134] = 132, + [135] = 135, + [136] = 130, + [137] = 135, + [138] = 138, + [139] = 139, + [140] = 139, + [141] = 139, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 143, + [148] = 148, + [149] = 149, + [150] = 142, + [151] = 145, + [152] = 152, + [153] = 152, + [154] = 154, + [155] = 154, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 149, + [161] = 161, + [162] = 161, + [163] = 163, + [164] = 164, + [165] = 148, + [166] = 143, + [167] = 146, + [168] = 168, + [169] = 169, + [170] = 157, + [171] = 171, + [172] = 159, + [173] = 142, + [174] = 174, + [175] = 168, + [176] = 176, + [177] = 177, + [178] = 144, + [179] = 179, + [180] = 180, + [181] = 156, + [182] = 149, + [183] = 183, + [184] = 184, + [185] = 148, + [186] = 186, + [187] = 168, + [188] = 188, + [189] = 189, + [190] = 171, + [191] = 186, + [192] = 183, + [193] = 193, + [194] = 159, + [195] = 171, + [196] = 196, + [197] = 197, + [198] = 184, + [199] = 146, + [200] = 200, + [201] = 157, + [202] = 202, + [203] = 177, + [204] = 204, + [205] = 205, + [206] = 156, + [207] = 184, + [208] = 180, + [209] = 179, + [210] = 197, + [211] = 211, + [212] = 183, + [213] = 213, + [214] = 158, + [215] = 154, + [216] = 152, + [217] = 145, + [218] = 218, + [219] = 164, + [220] = 196, + [221] = 62, + [222] = 82, + [223] = 76, + [224] = 74, + [225] = 81, + [226] = 79, + [227] = 64, + [228] = 228, + [229] = 83, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 74, + [234] = 234, + [235] = 79, + [236] = 236, + [237] = 79, + [238] = 81, + [239] = 74, + [240] = 234, + [241] = 241, + [242] = 81, + [243] = 232, + [244] = 73, + [245] = 245, + [246] = 74, + [247] = 81, + [248] = 79, + [249] = 70, + [250] = 77, + [251] = 251, + [252] = 71, + [253] = 68, + [254] = 69, + [255] = 255, + [256] = 80, + [257] = 78, + [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] = 337, + [340] = 340, + [341] = 337, + [342] = 342, + [343] = 343, + [344] = 342, + [345] = 343, + [346] = 346, + [347] = 342, + [348] = 343, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 352, + [356] = 356, + [357] = 354, + [358] = 353, + [359] = 356, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 362, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 366, + [369] = 369, + [370] = 360, + [371] = 361, + [372] = 363, + [373] = 365, + [374] = 369, + [375] = 367, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 378, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 377, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 376, + [389] = 389, + [390] = 386, + [391] = 384, + [392] = 389, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 395, + [397] = 395, + [398] = 394, + [399] = 394, + [400] = 320, + [401] = 401, + [402] = 402, + [403] = 401, + [404] = 401, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 83, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 79, + [422] = 422, + [423] = 423, + [424] = 81, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 74, + [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] = 66, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 60, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 63, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 314, + [488] = 264, + [489] = 304, + [490] = 270, + [491] = 301, + [492] = 408, + [493] = 493, + [494] = 320, + [495] = 263, + [496] = 272, + [497] = 306, + [498] = 334, + [499] = 303, + [500] = 283, + [501] = 330, + [502] = 312, + [503] = 315, + [504] = 276, + [505] = 299, + [506] = 295, + [507] = 311, + [508] = 285, + [509] = 307, + [510] = 284, + [511] = 325, + [512] = 278, + [513] = 329, + [514] = 261, + [515] = 313, + [516] = 516, + [517] = 287, + [518] = 281, + [519] = 333, + [520] = 328, + [521] = 288, + [522] = 318, + [523] = 316, + [524] = 286, + [525] = 297, + [526] = 259, + [527] = 260, + [528] = 528, + [529] = 298, + [530] = 331, + [531] = 290, + [532] = 305, + [533] = 321, + [534] = 528, + [535] = 332, + [536] = 296, + [537] = 317, + [538] = 302, + [539] = 294, + [540] = 268, + [541] = 309, + [542] = 336, + [543] = 310, + [544] = 493, + [545] = 280, + [546] = 322, + [547] = 319, + [548] = 308, + [549] = 300, + [550] = 323, + [551] = 293, + [552] = 258, + [553] = 289, + [554] = 279, + [555] = 277, + [556] = 275, + [557] = 326, + [558] = 274, + [559] = 273, + [560] = 271, + [561] = 269, + [562] = 327, + [563] = 282, + [564] = 335, + [565] = 262, + [566] = 291, + [567] = 265, + [568] = 292, + [569] = 266, + [570] = 267, + [571] = 408, + [572] = 572, + [573] = 418, + [574] = 574, + [575] = 575, + [576] = 417, + [577] = 577, + [578] = 416, + [579] = 579, + [580] = 580, + [581] = 577, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 575, + [589] = 574, + [590] = 414, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 422, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 593, + [612] = 612, + [613] = 595, + [614] = 432, + [615] = 615, + [616] = 414, + [617] = 617, + [618] = 407, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 432, + [624] = 422, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 601, + [629] = 602, + [630] = 603, + [631] = 631, + [632] = 600, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 626, + [638] = 600, + [639] = 598, + [640] = 597, + [641] = 626, + [642] = 83, + [643] = 626, + [644] = 600, + [645] = 436, + [646] = 419, + [647] = 626, + [648] = 620, + [649] = 619, + [650] = 607, + [651] = 651, + [652] = 617, + [653] = 626, + [654] = 600, + [655] = 655, + [656] = 656, + [657] = 626, + [658] = 627, + [659] = 600, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 411, + [665] = 409, + [666] = 666, + [667] = 412, + [668] = 668, + [669] = 669, + [670] = 413, + [671] = 671, + [672] = 406, + [673] = 410, + [674] = 615, + [675] = 604, + [676] = 676, + [677] = 660, + [678] = 600, + [679] = 679, + [680] = 680, + [681] = 595, + [682] = 626, + [683] = 627, + [684] = 684, + [685] = 625, + [686] = 320, + [687] = 635, + [688] = 688, + [689] = 417, + [690] = 600, + [691] = 416, + [692] = 608, + [693] = 671, + [694] = 418, + [695] = 476, + [696] = 466, + [697] = 447, + [698] = 454, + [699] = 464, + [700] = 466, + [701] = 483, + [702] = 486, + [703] = 440, + [704] = 74, + [705] = 441, + [706] = 706, + [707] = 428, + [708] = 451, + [709] = 320, + [710] = 419, + [711] = 436, + [712] = 712, + [713] = 434, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 429, + [718] = 718, + [719] = 477, + [720] = 446, + [721] = 461, + [722] = 476, + [723] = 427, + [724] = 431, + [725] = 425, + [726] = 726, + [727] = 727, + [728] = 726, + [729] = 729, + [730] = 730, + [731] = 727, + [732] = 732, + [733] = 81, + [734] = 732, + [735] = 735, + [736] = 79, + [737] = 712, + [738] = 477, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 741, + [744] = 729, + [745] = 461, + [746] = 423, + [747] = 739, + [748] = 290, + [749] = 446, + [750] = 716, + [751] = 751, + [752] = 447, + [753] = 753, + [754] = 454, + [755] = 464, + [756] = 751, + [757] = 757, + [758] = 483, + [759] = 486, + [760] = 440, + [761] = 761, + [762] = 441, + [763] = 740, + [764] = 764, + [765] = 706, + [766] = 451, + [767] = 730, + [768] = 439, + [769] = 482, + [770] = 448, + [771] = 71, + [772] = 463, + [773] = 73, + [774] = 462, + [775] = 69, + [776] = 453, + [777] = 456, + [778] = 60, + [779] = 63, + [780] = 68, + [781] = 472, + [782] = 479, + [783] = 450, + [784] = 784, + [785] = 442, + [786] = 786, + [787] = 455, + [788] = 452, + [789] = 70, + [790] = 485, + [791] = 481, + [792] = 469, + [793] = 66, + [794] = 471, + [795] = 438, + [796] = 474, + [797] = 460, + [798] = 77, + [799] = 457, + [800] = 445, + [801] = 467, + [802] = 484, + [803] = 468, + [804] = 470, + [805] = 80, + [806] = 465, + [807] = 78, + [808] = 458, + [809] = 449, + [810] = 443, + [811] = 444, + [812] = 480, + [813] = 475, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 818, + [820] = 817, + [821] = 385, + [822] = 320, + [823] = 823, + [824] = 824, + [825] = 824, + [826] = 826, + [827] = 826, + [828] = 824, + [829] = 824, + [830] = 824, + [831] = 824, + [832] = 826, + [833] = 824, + [834] = 824, + [835] = 835, + [836] = 835, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 839, + [843] = 413, + [844] = 838, + [845] = 837, + [846] = 407, + [847] = 840, + [848] = 410, + [849] = 406, + [850] = 850, + [851] = 62, + [852] = 852, + [853] = 64, + [854] = 76, + [855] = 855, + [856] = 856, + [857] = 82, + [858] = 855, + [859] = 859, + [860] = 837, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 838, + [868] = 868, + [869] = 869, + [870] = 864, + [871] = 871, + [872] = 839, + [873] = 840, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 880, + [886] = 886, + [887] = 878, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 891, + [893] = 889, + [894] = 894, + [895] = 895, + [896] = 841, + [897] = 889, + [898] = 66, + [899] = 899, + [900] = 60, + [901] = 882, + [902] = 902, + [903] = 903, + [904] = 903, + [905] = 899, + [906] = 906, + [907] = 906, + [908] = 61, + [909] = 909, + [910] = 910, + [911] = 902, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 913, + [921] = 839, + [922] = 922, + [923] = 923, + [924] = 838, + [925] = 925, + [926] = 840, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 837, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 919, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 936, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 928, + [949] = 882, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 852, + [960] = 852, + [961] = 961, + [962] = 852, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 961, + [972] = 413, + [973] = 973, + [974] = 866, + [975] = 975, + [976] = 976, + [977] = 866, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 407, + [983] = 406, + [984] = 894, + [985] = 985, + [986] = 986, + [987] = 410, + [988] = 866, + [989] = 989, + [990] = 852, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 385, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 996, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 999, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 866, + [1014] = 1014, + [1015] = 385, + [1016] = 994, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 1009, + [1022] = 411, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1027, + [1029] = 1029, + [1030] = 1030, + [1031] = 1019, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1018, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 409, + [1042] = 412, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1044, + [1052] = 1052, + [1053] = 1049, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1054, + [1058] = 1058, + [1059] = 1058, + [1060] = 1060, + [1061] = 1061, + [1062] = 1054, + [1063] = 1061, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1061, + [1070] = 1067, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1043, + [1076] = 1065, + [1077] = 1077, + [1078] = 1078, + [1079] = 1068, + [1080] = 1067, + [1081] = 1074, + [1082] = 1082, + [1083] = 1083, + [1084] = 1068, + [1085] = 1085, + [1086] = 1078, + [1087] = 1087, + [1088] = 1050, + [1089] = 1089, + [1090] = 1090, + [1091] = 1071, + [1092] = 1046, + [1093] = 1093, + [1094] = 1044, + [1095] = 1095, + [1096] = 1089, + [1097] = 1095, + [1098] = 1093, + [1099] = 1087, + [1100] = 1085, + [1101] = 1101, + [1102] = 1068, + [1103] = 1103, + [1104] = 910, + [1105] = 1067, + [1106] = 1106, + [1107] = 1046, + [1108] = 1103, + [1109] = 1109, + [1110] = 1061, + [1111] = 1090, + [1112] = 1046, + [1113] = 1093, + [1114] = 1089, + [1115] = 1068, + [1116] = 1067, + [1117] = 1061, + [1118] = 1064, + [1119] = 1068, + [1120] = 1066, + [1121] = 1121, + [1122] = 1077, + [1123] = 1056, + [1124] = 1067, + [1125] = 1061, + [1126] = 1048, + [1127] = 1068, + [1128] = 1055, + [1129] = 1067, + [1130] = 1061, + [1131] = 1085, + [1132] = 1052, + [1133] = 1101, + [1134] = 1087, + [1135] = 1089, + [1136] = 1136, + [1137] = 1093, + [1138] = 1083, + [1139] = 1139, + [1140] = 1095, + [1141] = 1018, + [1142] = 1060, + [1143] = 954, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 320, + [1148] = 1083, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1056, + [1157] = 1145, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 60, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 82, + [1168] = 1151, + [1169] = 1169, + [1170] = 66, + [1171] = 76, + [1172] = 956, + [1173] = 952, + [1174] = 1174, + [1175] = 951, + [1176] = 1176, + [1177] = 942, + [1178] = 937, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 945, + [1185] = 1185, + [1186] = 62, + [1187] = 64, + [1188] = 1188, + [1189] = 1189, + [1190] = 946, + [1191] = 320, + [1192] = 1192, + [1193] = 1193, + [1194] = 941, + [1195] = 939, + [1196] = 1196, + [1197] = 934, + [1198] = 1179, + [1199] = 1199, + [1200] = 997, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1161, + [1209] = 1209, + [1210] = 1174, + [1211] = 1211, + [1212] = 61, + [1213] = 950, + [1214] = 1153, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 933, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 929, + [1224] = 953, + [1225] = 1217, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 927, + [1237] = 1237, + [1238] = 1238, + [1239] = 1160, + [1240] = 1240, + [1241] = 925, + [1242] = 1161, + [1243] = 922, + [1244] = 1185, + [1245] = 935, + [1246] = 914, + [1247] = 1247, + [1248] = 1207, + [1249] = 1199, + [1250] = 915, + [1251] = 1209, + [1252] = 917, + [1253] = 1206, + [1254] = 955, + [1255] = 1255, + [1256] = 1256, + [1257] = 1211, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 912, + [1266] = 1266, + [1267] = 916, + [1268] = 1268, + [1269] = 918, + [1270] = 1270, + [1271] = 923, + [1272] = 931, + [1273] = 1273, + [1274] = 1274, + [1275] = 932, + [1276] = 1276, + [1277] = 1277, + [1278] = 1169, + [1279] = 1166, + [1280] = 1280, + [1281] = 1281, + [1282] = 1149, + [1283] = 1283, + [1284] = 1284, + [1285] = 1176, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1180, + [1294] = 1277, + [1295] = 1295, + [1296] = 1183, + [1297] = 1255, + [1298] = 1298, + [1299] = 1174, + [1300] = 1300, + [1301] = 1298, + [1302] = 1291, + [1303] = 1289, + [1304] = 1192, + [1305] = 1305, + [1306] = 1188, + [1307] = 1181, + [1308] = 1308, + [1309] = 1309, + [1310] = 1158, + [1311] = 1287, + [1312] = 1155, + [1313] = 1153, + [1314] = 1238, + [1315] = 1315, + [1316] = 1316, + [1317] = 1196, + [1318] = 1274, + [1319] = 1283, + [1320] = 1320, + [1321] = 1305, + [1322] = 944, + [1323] = 1323, + [1324] = 1229, + [1325] = 1233, + [1326] = 1270, + [1327] = 1234, + [1328] = 1235, + [1329] = 1237, + [1330] = 1144, + [1331] = 1264, + [1332] = 1268, + [1333] = 1284, + [1334] = 1286, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1342, + [1343] = 1343, + [1344] = 1337, + [1345] = 1337, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 863, + [1366] = 1364, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 63, + [1373] = 1347, + [1374] = 1340, + [1375] = 1338, + [1376] = 1335, + [1377] = 1377, + [1378] = 1378, + [1379] = 1358, + [1380] = 1339, + [1381] = 1341, + [1382] = 1382, + [1383] = 1383, + [1384] = 1369, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1353, + [1390] = 1336, + [1391] = 1391, + [1392] = 1391, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1364, + [1405] = 1405, + [1406] = 1361, + [1407] = 1407, + [1408] = 1395, + [1409] = 1351, + [1410] = 1356, + [1411] = 1393, + [1412] = 1412, + [1413] = 1382, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1416, + [1420] = 1420, + [1421] = 1421, + [1422] = 1417, + [1423] = 1412, + [1424] = 1414, + [1425] = 1425, + [1426] = 1426, + [1427] = 1393, + [1428] = 1428, + [1429] = 1414, + [1430] = 1391, + [1431] = 1382, + [1432] = 1432, + [1433] = 1433, + [1434] = 1417, + [1435] = 1416, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, + [1440] = 1397, + [1441] = 1441, + [1442] = 1412, + [1443] = 1443, + [1444] = 1383, + [1445] = 1445, + [1446] = 1391, + [1447] = 1393, + [1448] = 1382, + [1449] = 1371, + [1450] = 1407, + [1451] = 1382, + [1452] = 1356, + [1453] = 1417, + [1454] = 1377, + [1455] = 1455, + [1456] = 1391, + [1457] = 1393, + [1458] = 1393, + [1459] = 1459, + [1460] = 1351, + [1461] = 1391, + [1462] = 1462, + [1463] = 1363, + [1464] = 1464, + [1465] = 1465, + [1466] = 1441, + [1467] = 1403, + [1468] = 1343, + [1469] = 1382, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1475, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1475, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1473, + [1490] = 1490, + [1491] = 1491, + [1492] = 1475, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1480, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1475, + [1503] = 1503, + [1504] = 1473, + [1505] = 1472, + [1506] = 1506, + [1507] = 1475, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1519, + [1523] = 1475, + [1524] = 1524, + [1525] = 1525, + [1526] = 1473, + [1527] = 879, + [1528] = 1528, + [1529] = 1529, + [1530] = 1473, + [1531] = 1531, + [1532] = 1474, + [1533] = 1518, + [1534] = 1534, + [1535] = 1498, + [1536] = 1475, + [1537] = 1487, + [1538] = 1470, + [1539] = 1483, + [1540] = 1482, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1490, + [1545] = 1493, + [1546] = 1546, + [1547] = 1515, + [1548] = 1548, + [1549] = 1529, + [1550] = 1524, + [1551] = 1543, + [1552] = 1517, + [1553] = 1553, + [1554] = 1554, + [1555] = 1495, + [1556] = 1556, + [1557] = 1494, + [1558] = 1558, + [1559] = 1559, + [1560] = 1556, + [1561] = 1561, + [1562] = 1498, + [1563] = 1563, + [1564] = 1564, + [1565] = 1501, + [1566] = 1566, + [1567] = 1528, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1572, + [1576] = 1553, + [1577] = 1577, + [1578] = 1578, + [1579] = 1499, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1531, + [1584] = 1584, + [1585] = 1521, + [1586] = 1520, + [1587] = 1520, + [1588] = 1521, + [1589] = 1589, + [1590] = 1590, + [1591] = 1529, + [1592] = 1472, + [1593] = 1499, + [1594] = 1554, + [1595] = 1561, + [1596] = 1580, + [1597] = 1597, + [1598] = 1512, + [1599] = 1520, + [1600] = 1511, + [1601] = 1573, + [1602] = 1529, + [1603] = 1603, + [1604] = 1520, + [1605] = 1510, + [1606] = 1529, + [1607] = 1497, + [1608] = 1529, + [1609] = 1609, + [1610] = 1509, + [1611] = 1546, + [1612] = 875, + [1613] = 1569, + [1614] = 1568, + [1615] = 1566, + [1616] = 1508, + [1617] = 1617, + [1618] = 876, + [1619] = 1541, + [1620] = 1617, + [1621] = 1558, + [1622] = 1570, + [1623] = 1574, + [1624] = 1568, + [1625] = 1566, + [1626] = 1566, + [1627] = 1566, + [1628] = 1491, + [1629] = 1609, + [1630] = 1488, + [1631] = 1486, + [1632] = 1485, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(248); + ADVANCE_MAP( + '!', 267, + '"', 407, + '#', 268, + '$', 414, + '%', 332, + '&', 337, + '\'', 24, + '(', 290, + ')', 293, + '*', 289, + '+', 327, + ',', 277, + '-', 330, + '.', 360, + '/', 331, + '0', 388, + ':', 262, + ';', 254, + '<', 415, + '=', 265, + '>', 325, + '?', 362, + '@', 357, + 'B', 205, + '[', 269, + ']', 270, + '^', 334, + '_', 291, + 'a', 178, + 'b', 19, + 'c', 18, + 'd', 123, + 'e', 148, + 'f', 94, + 'i', 63, + 'l', 124, + 'm', 99, + 'n', 163, + 'o', 130, + 'p', 199, + 'r', 110, + 's', 183, + 't', 172, + 'u', 64, + 'w', 134, + '{', 249, + '|', 339, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(244); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + END_STATE(); + case 1: + ADVANCE_MAP( + '!', 267, + '"', 402, + '#', 268, + '$', 414, + '%', 332, + '&', 337, + '\'', 24, + '(', 290, + ')', 293, + '*', 289, + '+', 327, + ',', 277, + '-', 330, + '.', 360, + '/', 331, + '0', 388, + ':', 262, + ';', 254, + '<', 323, + '=', 265, + '>', 325, + '?', 362, + '@', 357, + 'B', 575, + '[', 269, + ']', 270, + '^', 334, + '_', 292, + 'b', 420, + 'c', 422, + 'd', 472, + 'e', 520, + 'f', 453, + 'i', 425, + 'l', 485, + 'm', 459, + 'n', 530, + 'p', 566, + 'r', 492, + 's', 557, + 't', 537, + 'u', 429, + 'w', 497, + '{', 249, + '|', 339, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 2: + ADVANCE_MAP( + '!', 267, + '"', 402, + '%', 332, + '&', 336, + '\'', 24, + '(', 290, + ')', 293, + '*', 289, + '+', 327, + ',', 277, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 262, + ';', 254, + '<', 323, + '=', 264, + '>', 325, + '?', 362, + '@', 357, + 'B', 575, + '[', 269, + ']', 270, + '^', 333, + '_', 400, + 'b', 420, + 'c', 423, + 'd', 472, + 'f', 454, + 'i', 426, + 'l', 527, + 'm', 462, + 'r', 473, + 's', 568, + 't', 545, + 'u', 430, + 'w', 497, + '{', 249, + '|', 340, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(2); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 3: + ADVANCE_MAP( + '!', 267, + '"', 402, + '%', 332, + '&', 336, + '\'', 24, + '(', 290, + '*', 289, + '+', 327, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 89, + '<', 323, + '=', 265, + '>', 325, + '?', 362, + '@', 357, + 'B', 575, + '[', 269, + '^', 333, + '_', 400, + 'b', 420, + 'c', 423, + 'd', 472, + 'f', 454, + 'i', 426, + 'l', 527, + 'm', 462, + 'r', 473, + 's', 568, + 't', 545, + 'u', 430, + 'w', 497, + '{', 249, + '|', 340, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 4: + ADVANCE_MAP( + '!', 267, + '%', 332, + '&', 336, + '(', 290, + ')', 293, + '*', 289, + '+', 327, + ',', 277, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 89, + ';', 254, + '<', 323, + '=', 264, + '>', 325, + '?', 362, + '[', 269, + ']', 270, + '^', 333, + 'a', 178, + 'e', 147, + 'i', 157, + 'n', 163, + '{', 249, + '|', 340, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(4); + if (('1' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(390); + END_STATE(); + case 5: + ADVANCE_MAP( + '!', 266, + '"', 402, + '#', 268, + '\'', 24, + '(', 290, + ')', 293, + '*', 288, + ',', 277, + '-', 328, + '/', 62, + '0', 388, + ':', 262, + ';', 254, + '<', 322, + '=', 263, + '@', 357, + 'B', 575, + '[', 269, + ']', 270, + '_', 400, + 'b', 420, + 'c', 423, + 'd', 472, + 'f', 454, + 'i', 426, + 'l', 527, + 'm', 462, + 'r', 473, + 's', 568, + 't', 545, + 'u', 430, + 'w', 497, + '{', 249, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 6: + ADVANCE_MAP( + '!', 266, + '"', 402, + '\'', 24, + '(', 290, + '*', 288, + '-', 328, + '/', 62, + '0', 388, + ':', 89, + '@', 357, + 'B', 575, + '[', 269, + '_', 400, + 'b', 420, + 'c', 423, + 'd', 472, + 'f', 454, + 'i', 426, + 'l', 485, + 'm', 462, + 'r', 473, + 's', 568, + 't', 545, + 'u', 430, + 'w', 497, + '{', 249, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 7: + ADVANCE_MAP( + '!', 266, + '"', 402, + '\'', 24, + '(', 290, + '*', 288, + '-', 328, + '/', 62, + '0', 388, + ':', 89, + '@', 357, + 'B', 575, + '[', 269, + '_', 400, + 'b', 420, + 'c', 423, + 'd', 472, + 'f', 454, + 'i', 426, + 'l', 527, + 'm', 461, + 'r', 473, + 's', 568, + 't', 545, + 'u', 430, + 'w', 497, + '{', 249, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(7); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 8: + ADVANCE_MAP( + '!', 266, + '(', 290, + ')', 293, + ',', 277, + '-', 91, + '/', 62, + ':', 262, + ';', 254, + '<', 415, + '=', 263, + '>', 324, + ']', 270, + 'i', 157, + 'n', 163, + 'o', 130, + '{', 249, + '|', 338, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(8); + END_STATE(); + case 9: + ADVANCE_MAP( + '!', 266, + '(', 290, + ',', 277, + '/', 62, + ':', 89, + ';', 254, + '<', 415, + '=', 92, + ']', 270, + 'i', 129, + '{', 249, + '|', 338, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(9); + END_STATE(); + case 10: + ADVANCE_MAP( + '!', 90, + '"', 407, + '#', 268, + '%', 332, + '&', 336, + '(', 290, + '*', 289, + '+', 327, + '-', 329, + '.', 359, + '/', 331, + ':', 89, + ';', 254, + '<', 323, + '=', 265, + '>', 325, + '?', 362, + 'B', 575, + '[', 269, + '^', 333, + 'b', 525, + 'c', 531, + 'd', 472, + 'e', 520, + 'f', 488, + 'i', 427, + 'l', 486, + 'm', 526, + 'p', 566, + 's', 550, + 't', 544, + 'u', 429, + '|', 340, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 11: + ADVANCE_MAP( + '!', 90, + '"', 402, + '#', 268, + '%', 332, + '&', 336, + '\'', 24, + '(', 290, + '*', 289, + '+', 327, + ',', 277, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 89, + '<', 323, + '=', 264, + '>', 325, + '?', 362, + 'B', 575, + '[', 269, + '^', 333, + '_', 292, + 'b', 421, + 'c', 424, + 'd', 472, + 'e', 514, + 'f', 454, + 'i', 428, + 'm', 571, + 's', 568, + 't', 545, + 'u', 430, + '|', 340, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 12: + ADVANCE_MAP( + '!', 90, + '"', 402, + '#', 268, + '%', 332, + '&', 336, + '\'', 24, + '(', 290, + '*', 289, + '+', 327, + ',', 277, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 89, + '<', 323, + '=', 264, + '>', 325, + '?', 362, + 'B', 575, + '[', 269, + '^', 333, + '_', 292, + 'b', 421, + 'c', 424, + 'd', 472, + 'f', 454, + 'i', 428, + 'm', 571, + 's', 568, + 't', 545, + 'u', 430, + '|', 340, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 13: + ADVANCE_MAP( + '!', 90, + '#', 268, + '%', 332, + '&', 336, + '(', 290, + '*', 289, + '+', 327, + '-', 329, + '.', 359, + '/', 331, + ':', 89, + ';', 254, + '<', 323, + '=', 265, + '>', 325, + '?', 362, + 'B', 575, + '[', 269, + '^', 333, + 'b', 525, + 'c', 531, + 'd', 472, + 'e', 520, + 'f', 488, + 'i', 427, + 'l', 486, + 'm', 526, + 'p', 566, + 's', 550, + 't', 544, + 'u', 429, + '|', 340, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 14: + ADVANCE_MAP( + '!', 90, + '%', 332, + '&', 336, + '(', 290, + '*', 289, + '+', 327, + ',', 277, + '-', 329, + '.', 359, + '/', 331, + ':', 261, + '<', 323, + '=', 265, + '>', 325, + '?', 362, + '[', 269, + '^', 333, + 'e', 147, + '|', 340, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(14); + END_STATE(); + case 15: + ADVANCE_MAP( + '"', 402, + '#', 268, + '\'', 24, + '(', 290, + ')', 293, + ',', 277, + '-', 328, + '/', 62, + '0', 388, + ':', 89, + '@', 357, + 'B', 575, + '[', 269, + ']', 270, + '_', 292, + 'b', 421, + 'c', 424, + 'd', 472, + 'f', 454, + 'i', 428, + 'm', 571, + 's', 568, + 't', 545, + 'u', 430, + '|', 338, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(15); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 16: + ADVANCE_MAP( + '"', 402, + '#', 268, + '\'', 24, + '(', 290, + ')', 293, + ',', 277, + '-', 328, + '/', 62, + '0', 388, + ':', 89, + '@', 357, + 'B', 575, + '[', 269, + '_', 292, + 'b', 421, + 'c', 424, + 'd', 472, + 'f', 454, + 'i', 428, + 'm', 571, + 'r', 487, + 's', 568, + 't', 545, + 'u', 430, + '|', 338, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(16); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 17: + ADVANCE_MAP( + '"', 402, + '\'', 24, + '(', 290, + '-', 328, + '/', 62, + '0', 388, + ':', 89, + '>', 324, + '@', 357, + 'B', 575, + '[', 269, + '_', 400, + 'b', 421, + 'c', 424, + 'd', 472, + 'f', 454, + 'i', 428, + 's', 568, + 't', 545, + 'u', 430, + '{', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(17); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(158); + if (lookahead == 'r') ADVANCE(102); + END_STATE(); + case 19: + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(164); + if (lookahead == 'r') ADVANCE(125); + END_STATE(); + case 20: + ADVANCE_MAP( + '#', 268, + '+', 326, + '-', 328, + '/', 62, + ':', 89, + '>', 324, + 'B', 575, + 'b', 525, + 'c', 531, + 'd', 472, + 'f', 489, + 'i', 427, + 's', 568, + 'u', 430, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(20); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 21: + if (lookahead == '#') ADVANCE(268); + if (lookahead == ',') ADVANCE(277); + if (lookahead == '.') ADVANCE(61); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '0') ADVANCE(388); + if (lookahead == '_') ADVANCE(400); + if (lookahead == '}') ADVANCE(250); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(21); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 22: + if (lookahead == '#') ADVANCE(268); + if (lookahead == ',') ADVANCE(277); + if (lookahead == '/') ADVANCE(62); + if (lookahead == 'p') ADVANCE(566); + if (lookahead == '}') ADVANCE(250); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 23: + if (lookahead == '\'') ADVANCE(409); + END_STATE(); + case 24: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(243); + if (lookahead != 0) ADVANCE(54); + END_STATE(); + case 25: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(214); + if (lookahead != 0) ADVANCE(26); + END_STATE(); + case 26: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(212); + if (lookahead != 0) ADVANCE(23); + END_STATE(); + case 27: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(215); + if (lookahead != 0) ADVANCE(25); + END_STATE(); + case 28: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(216); + if (lookahead != 0) ADVANCE(27); + END_STATE(); + case 29: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(217); + if (lookahead != 0) ADVANCE(28); + END_STATE(); + case 30: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(218); + if (lookahead != 0) ADVANCE(29); + END_STATE(); + case 31: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(219); + if (lookahead != 0) ADVANCE(30); + END_STATE(); + case 32: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(220); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 33: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(221); + if (lookahead != 0) ADVANCE(32); + END_STATE(); + case 34: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(222); + if (lookahead != 0) ADVANCE(33); + END_STATE(); + case 35: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(223); + if (lookahead != 0) ADVANCE(34); + END_STATE(); + case 36: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(224); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 37: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0) ADVANCE(36); + END_STATE(); + case 38: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(226); + if (lookahead != 0) ADVANCE(37); + END_STATE(); + case 39: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(227); + if (lookahead != 0) ADVANCE(38); + END_STATE(); + case 40: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(228); + if (lookahead != 0) ADVANCE(39); + END_STATE(); + case 41: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(229); + if (lookahead != 0) ADVANCE(40); + END_STATE(); + case 42: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(230); + if (lookahead != 0) ADVANCE(41); + END_STATE(); + case 43: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(231); + if (lookahead != 0) ADVANCE(42); + END_STATE(); + case 44: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(232); + if (lookahead != 0) ADVANCE(43); + END_STATE(); + case 45: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(233); + if (lookahead != 0) ADVANCE(44); + END_STATE(); + case 46: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(234); + if (lookahead != 0) ADVANCE(45); + END_STATE(); + case 47: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(235); + if (lookahead != 0) ADVANCE(46); + END_STATE(); + case 48: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(236); + if (lookahead != 0) ADVANCE(47); + END_STATE(); + case 49: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(237); + if (lookahead != 0) ADVANCE(48); + END_STATE(); + case 50: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(238); + if (lookahead != 0) ADVANCE(49); + END_STATE(); + case 51: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(239); + if (lookahead != 0) ADVANCE(50); + END_STATE(); + case 52: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(240); + if (lookahead != 0) ADVANCE(51); + END_STATE(); + case 53: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(241); + if (lookahead != 0) ADVANCE(52); + END_STATE(); + case 54: + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(242); + if (lookahead != 0) ADVANCE(53); + END_STATE(); + case 55: + ADVANCE_MAP( + '(', 290, + ')', 293, + '*', 288, + ',', 277, + '/', 62, + ':', 89, + '@', 357, + 'B', 575, + '[', 269, + 'b', 525, + 'd', 472, + 'f', 489, + 'i', 428, + 's', 568, + 'u', 430, + '{', 249, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 56: + ADVANCE_MAP( + '(', 290, + '/', 62, + ':', 89, + ';', 254, + '@', 357, + 'B', 575, + '[', 269, + 'b', 525, + 'd', 472, + 'f', 489, + 'i', 428, + 'n', 530, + 's', 568, + 'u', 430, + '{', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 57: + if (lookahead == '(') ADVANCE(290); + if (lookahead == '/') ADVANCE(62); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(57); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 58: + ADVANCE_MAP( + ')', 293, + ',', 277, + '/', 62, + ':', 261, + ';', 254, + '<', 322, + '=', 263, + '>', 324, + ']', 270, + 'i', 157, + 'n', 163, + 'o', 130, + '{', 249, + '|', 338, + '}', 250, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(58); + END_STATE(); + case 59: + if (lookahead == '*') ADVANCE(288); + if (lookahead == '/') ADVANCE(62); + if (lookahead == '<') ADVANCE(415); + if (lookahead == 's') ADVANCE(568); + if (lookahead == '{') ADVANCE(249); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(59); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 60: + if (lookahead == ',') ADVANCE(277); + if (lookahead == '/') ADVANCE(62); + if (lookahead == 'm') ADVANCE(571); + if (lookahead == '}') ADVANCE(250); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(60); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 61: + if (lookahead == '.') ADVANCE(358); + END_STATE(); + case 62: + if (lookahead == '/') ADVANCE(586); + END_STATE(); + case 63: + if (lookahead == '1') ADVANCE(67); + if (lookahead == '3') ADVANCE(68); + if (lookahead == '6') ADVANCE(78); + if (lookahead == '8') ADVANCE(296); + if (lookahead == 'f') ADVANCE(369); + if (lookahead == 'm') ADVANCE(168); + if (lookahead == 'n') ADVANCE(580); + END_STATE(); + case 64: + if (lookahead == '1') ADVANCE(73); + if (lookahead == '3') ADVANCE(69); + if (lookahead == '6') ADVANCE(79); + if (lookahead == '8') ADVANCE(294); + if (lookahead == 's') ADVANCE(111); + END_STATE(); + case 65: + if (lookahead == '1') ADVANCE(75); + if (lookahead == '2') ADVANCE(81); + if (lookahead == '3') ADVANCE(70); + if (lookahead == '6') ADVANCE(80); + if (lookahead == '8') ADVANCE(387); + if (lookahead == 's') ADVANCE(143); + END_STATE(); + case 66: + if (lookahead == '1') ADVANCE(75); + if (lookahead == '3') ADVANCE(70); + if (lookahead == '6') ADVANCE(80); + if (lookahead == '8') ADVANCE(387); + END_STATE(); + case 67: + if (lookahead == '2') ADVANCE(87); + if (lookahead == '6') ADVANCE(300); + END_STATE(); + case 68: + if (lookahead == '2') ADVANCE(304); + END_STATE(); + case 69: + if (lookahead == '2') ADVANCE(302); + END_STATE(); + case 70: + if (lookahead == '2') ADVANCE(387); + END_STATE(); + case 71: + if (lookahead == '2') ADVANCE(320); + END_STATE(); + case 72: + if (lookahead == '2') ADVANCE(408); + END_STATE(); + case 73: + if (lookahead == '2') ADVANCE(88); + if (lookahead == '6') ADVANCE(298); + END_STATE(); + case 74: + if (lookahead == '2') ADVANCE(83); + END_STATE(); + case 75: + if (lookahead == '2') ADVANCE(86); + if (lookahead == '6') ADVANCE(387); + END_STATE(); + case 76: + if (lookahead == '2') ADVANCE(82); + END_STATE(); + case 77: + if (lookahead == '2') ADVANCE(84); + END_STATE(); + case 78: + if (lookahead == '4') ADVANCE(308); + END_STATE(); + case 79: + if (lookahead == '4') ADVANCE(306); + END_STATE(); + case 80: + if (lookahead == '4') ADVANCE(387); + END_STATE(); + case 81: + if (lookahead == '5') ADVANCE(85); + END_STATE(); + case 82: + if (lookahead == '5') ADVANCE(70); + END_STATE(); + case 83: + if (lookahead == '5') ADVANCE(71); + END_STATE(); + case 84: + if (lookahead == '5') ADVANCE(72); + END_STATE(); + case 85: + if (lookahead == '6') ADVANCE(387); + END_STATE(); + case 86: + if (lookahead == '8') ADVANCE(387); + END_STATE(); + case 87: + if (lookahead == '8') ADVANCE(312); + END_STATE(); + case 88: + if (lookahead == '8') ADVANCE(310); + END_STATE(); + case 89: + if (lookahead == ':') ADVANCE(286); + END_STATE(); + case 90: + if (lookahead == '=') ADVANCE(354); + END_STATE(); + case 91: + if (lookahead == '>') ADVANCE(280); + END_STATE(); + case 92: + if (lookahead == '>') ADVANCE(361); + END_STATE(); + case 93: + if (lookahead == 'A') ADVANCE(175); + END_STATE(); + case 94: + if (lookahead == 'a') ADVANCE(153); + if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'n') ADVANCE(278); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(144); + END_STATE(); + case 96: + if (lookahead == 'a') ADVANCE(206); + END_STATE(); + case 97: + if (lookahead == 'a') ADVANCE(162); + END_STATE(); + case 98: + if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'u') ADVANCE(116); + END_STATE(); + case 99: + if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'u') ADVANCE(186); + END_STATE(); + case 100: + if (lookahead == 'a') ADVANCE(204); + END_STATE(); + case 101: + if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'r') ADVANCE(201); + END_STATE(); + case 102: + if (lookahead == 'a') ADVANCE(196); + END_STATE(); + case 103: + if (lookahead == 'b') ADVANCE(379); + END_STATE(); + case 104: + if (lookahead == 'c') ADVANCE(383); + END_STATE(); + case 105: + if (lookahead == 'c') ADVANCE(373); + END_STATE(); + case 106: + if (lookahead == 'c') ADVANCE(135); + END_STATE(); + case 107: + if (lookahead == 'c') ADVANCE(189); + END_STATE(); + case 108: + if (lookahead == 'c') ADVANCE(142); + END_STATE(); + case 109: + if (lookahead == 'd') ADVANCE(271); + END_STATE(); + case 110: + if (lookahead == 'e') ADVANCE(131); + END_STATE(); + case 111: + if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'i') ADVANCE(207); + END_STATE(); + case 112: + if (lookahead == 'e') ADVANCE(387); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(93); + END_STATE(); + case 114: + if (lookahead == 'e') ADVANCE(416); + END_STATE(); + case 115: + if (lookahead == 'e') ADVANCE(174); + END_STATE(); + case 116: + if (lookahead == 'e') ADVANCE(410); + END_STATE(); + case 117: + if (lookahead == 'e') ADVANCE(257); + END_STATE(); + case 118: + if (lookahead == 'e') ADVANCE(585); + END_STATE(); + case 119: + if (lookahead == 'e') ADVANCE(412); + END_STATE(); + case 120: + if (lookahead == 'e') ADVANCE(314); + END_STATE(); + case 121: + if (lookahead == 'e') ADVANCE(385); + END_STATE(); + case 122: + if (lookahead == 'e') ADVANCE(365); + END_STATE(); + case 123: + if (lookahead == 'e') ADVANCE(132); + END_STATE(); + case 124: + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'o') ADVANCE(165); + END_STATE(); + case 125: + if (lookahead == 'e') ADVANCE(95); + END_STATE(); + case 126: + if (lookahead == 'e') ADVANCE(173); + END_STATE(); + case 127: + if (lookahead == 'e') ADVANCE(154); + END_STATE(); + case 128: + if (lookahead == 'e') ADVANCE(155); + END_STATE(); + case 129: + if (lookahead == 'f') ADVANCE(369); + END_STATE(); + case 130: + if (lookahead == 'f') ADVANCE(253); + END_STATE(); + case 131: + if (lookahead == 'f') ADVANCE(418); + if (lookahead == 't') ADVANCE(203); + END_STATE(); + case 132: + if (lookahead == 'f') ADVANCE(100); + END_STATE(); + case 133: + if (lookahead == 'f') ADVANCE(128); + END_STATE(); + case 134: + if (lookahead == 'h') ADVANCE(139); + END_STATE(); + case 135: + if (lookahead == 'h') ADVANCE(377); + END_STATE(); + case 136: + if (lookahead == 'i') ADVANCE(161); + END_STATE(); + case 137: + if (lookahead == 'i') ADVANCE(104); + END_STATE(); + case 138: + if (lookahead == 'i') ADVANCE(105); + END_STATE(); + case 139: + if (lookahead == 'i') ADVANCE(152); + END_STATE(); + case 140: + if (lookahead == 'i') ADVANCE(108); + END_STATE(); + case 141: + if (lookahead == 'i') ADVANCE(188); + END_STATE(); + case 142: + if (lookahead == 'i') ADVANCE(191); + END_STATE(); + case 143: + if (lookahead == 'i') ADVANCE(208); + END_STATE(); + case 144: + if (lookahead == 'k') ADVANCE(363); + END_STATE(); + case 145: + if (lookahead == 'l') ADVANCE(316); + END_STATE(); + case 146: + if (lookahead == 'l') ADVANCE(251); + END_STATE(); + case 147: + if (lookahead == 'l') ADVANCE(180); + END_STATE(); + case 148: + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(200); + if (lookahead == 'x') ADVANCE(195); + END_STATE(); + case 149: + if (lookahead == 'l') ADVANCE(192); + END_STATE(); + case 150: + if (lookahead == 'l') ADVANCE(140); + END_STATE(); + case 151: + if (lookahead == 'l') ADVANCE(190); + END_STATE(); + case 152: + if (lookahead == 'l') ADVANCE(121); + END_STATE(); + case 153: + if (lookahead == 'l') ADVANCE(182); + END_STATE(); + case 154: + if (lookahead == 'l') ADVANCE(197); + END_STATE(); + case 155: + if (lookahead == 'l') ADVANCE(198); + END_STATE(); + case 156: + if (lookahead == 'm') ADVANCE(275); + END_STATE(); + case 157: + if (lookahead == 'm') ADVANCE(169); + END_STATE(); + case 158: + if (lookahead == 'n') ADVANCE(181); + END_STATE(); + case 159: + if (lookahead == 'n') ADVANCE(371); + END_STATE(); + case 160: + if (lookahead == 'n') ADVANCE(381); + END_STATE(); + case 161: + if (lookahead == 'n') ADVANCE(202); + END_STATE(); + case 162: + if (lookahead == 'n') ADVANCE(138); + END_STATE(); + case 163: + if (lookahead == 'o') ADVANCE(167); + END_STATE(); + case 164: + if (lookahead == 'o') ADVANCE(145); + END_STATE(); + case 165: + if (lookahead == 'o') ADVANCE(166); + END_STATE(); + case 166: + if (lookahead == 'p') ADVANCE(375); + END_STATE(); + case 167: + if (lookahead == 'p') ADVANCE(97); + END_STATE(); + case 168: + if (lookahead == 'p') ADVANCE(146); + END_STATE(); + case 169: + if (lookahead == 'p') ADVANCE(150); + END_STATE(); + case 170: + if (lookahead == 'p') ADVANCE(126); + END_STATE(); + case 171: + if (lookahead == 'p') ADVANCE(117); + END_STATE(); + case 172: + if (lookahead == 'r') ADVANCE(98); + if (lookahead == 'y') ADVANCE(171); + END_STATE(); + case 173: + if (lookahead == 'r') ADVANCE(583); + END_STATE(); + case 174: + if (lookahead == 'r') ADVANCE(159); + END_STATE(); + case 175: + if (lookahead == 'r') ADVANCE(177); + END_STATE(); + case 176: + if (lookahead == 'r') ADVANCE(160); + END_STATE(); + case 177: + if (lookahead == 'r') ADVANCE(96); + END_STATE(); + case 178: + if (lookahead == 's') ADVANCE(287); + END_STATE(); + case 179: + if (lookahead == 's') ADVANCE(281); + END_STATE(); + case 180: + if (lookahead == 's') ADVANCE(114); + END_STATE(); + case 181: + if (lookahead == 's') ADVANCE(187); + if (lookahead == 't') ADVANCE(136); + END_STATE(); + case 182: + if (lookahead == 's') ADVANCE(119); + END_STATE(); + case 183: + if (lookahead == 't') ADVANCE(101); + if (lookahead == 'u') ADVANCE(170); + END_STATE(); + case 184: + if (lookahead == 't') ADVANCE(282); + END_STATE(); + case 185: + if (lookahead == 't') ADVANCE(106); + END_STATE(); + case 186: + if (lookahead == 't') ADVANCE(581); + END_STATE(); + case 187: + if (lookahead == 't') ADVANCE(259); + END_STATE(); + case 188: + if (lookahead == 't') ADVANCE(255); + END_STATE(); + case 189: + if (lookahead == 't') ADVANCE(273); + END_STATE(); + case 190: + if (lookahead == 't') ADVANCE(367); + END_STATE(); + case 191: + if (lookahead == 't') ADVANCE(179); + END_STATE(); + case 192: + if (lookahead == 't') ADVANCE(74); + END_STATE(); + case 193: + if (lookahead == 't') ADVANCE(113); + END_STATE(); + case 194: + if (lookahead == 't') ADVANCE(137); + END_STATE(); + case 195: + if (lookahead == 't') ADVANCE(115); + END_STATE(); + case 196: + if (lookahead == 't') ADVANCE(118); + END_STATE(); + case 197: + if (lookahead == 't') ADVANCE(76); + END_STATE(); + case 198: + if (lookahead == 't') ADVANCE(77); + END_STATE(); + case 199: + if (lookahead == 'u') ADVANCE(103); + END_STATE(); + case 200: + if (lookahead == 'u') ADVANCE(156); + END_STATE(); + case 201: + if (lookahead == 'u') ADVANCE(107); + END_STATE(); + case 202: + if (lookahead == 'u') ADVANCE(122); + END_STATE(); + case 203: + if (lookahead == 'u') ADVANCE(176); + END_STATE(); + case 204: + if (lookahead == 'u') ADVANCE(151); + END_STATE(); + case 205: + if (lookahead == 'y') ADVANCE(193); + END_STATE(); + case 206: + if (lookahead == 'y') ADVANCE(318); + END_STATE(); + case 207: + if (lookahead == 'z') ADVANCE(120); + END_STATE(); + case 208: + if (lookahead == 'z') ADVANCE(112); + END_STATE(); + case 209: + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(392); + END_STATE(); + case 210: + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(394); + END_STATE(); + case 211: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + END_STATE(); + case 212: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(23); + END_STATE(); + case 213: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(406); + END_STATE(); + case 214: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(26); + END_STATE(); + case 215: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(25); + END_STATE(); + case 216: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(27); + END_STATE(); + case 217: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(28); + END_STATE(); + case 218: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(29); + END_STATE(); + case 219: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(30); + END_STATE(); + case 220: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(31); + END_STATE(); + case 221: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(32); + END_STATE(); + case 222: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(33); + END_STATE(); + case 223: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(34); + END_STATE(); + case 224: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(35); + END_STATE(); + case 225: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(36); + END_STATE(); + case 226: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(37); + END_STATE(); + case 227: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(38); + END_STATE(); + case 228: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(39); + END_STATE(); + case 229: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(40); + END_STATE(); + case 230: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(41); + END_STATE(); + case 231: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(42); + END_STATE(); + case 232: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(43); + END_STATE(); + case 233: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(44); + END_STATE(); + case 234: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(45); + END_STATE(); + case 235: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(46); + END_STATE(); + case 236: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(47); + END_STATE(); + case 237: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(48); + END_STATE(); + case 238: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(49); + END_STATE(); + case 239: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(50); + END_STATE(); + case 240: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(51); + END_STATE(); + case 241: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(52); + END_STATE(); + case 242: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(53); + END_STATE(); + case 243: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(54); + END_STATE(); + case 244: + if (eof) ADVANCE(248); + ADVANCE_MAP( + '!', 267, + '"', 402, + '#', 268, + '$', 414, + '%', 332, + '&', 337, + '\'', 24, + '(', 290, + ')', 293, + '*', 289, + '+', 327, + ',', 277, + '-', 330, + '.', 360, + '/', 331, + '0', 388, + ':', 262, + ';', 254, + '<', 415, + '=', 265, + '>', 325, + '?', 362, + '@', 357, + 'B', 205, + '[', 269, + ']', 270, + '^', 334, + '_', 291, + 'a', 178, + 'b', 19, + 'c', 18, + 'd', 123, + 'e', 148, + 'f', 94, + 'i', 63, + 'l', 124, + 'm', 99, + 'n', 163, + 'o', 130, + 'p', 199, + 'r', 110, + 's', 183, + 't', 172, + 'u', 64, + 'w', 134, + '{', 249, + '|', 339, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(244); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + END_STATE(); + case 245: + if (eof) ADVANCE(248); + ADVANCE_MAP( + '!', 267, + '"', 402, + '#', 268, + '%', 332, + '&', 336, + '\'', 24, + '(', 290, + ')', 293, + '*', 289, + '+', 327, + ',', 277, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 89, + ';', 254, + '<', 323, + '=', 264, + '>', 325, + '?', 362, + '@', 357, + 'B', 575, + '[', 269, + ']', 270, + '^', 333, + '_', 400, + 'b', 420, + 'c', 422, + 'd', 472, + 'e', 520, + 'f', 453, + 'i', 425, + 'l', 485, + 'm', 460, + 'p', 566, + 'r', 473, + 's', 550, + 't', 537, + 'u', 429, + 'w', 497, + '{', 249, + '|', 340, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(245); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 246: + if (eof) ADVANCE(248); + ADVANCE_MAP( + '!', 267, + '"', 402, + '#', 268, + '%', 332, + '&', 336, + '\'', 24, + '(', 290, + '*', 289, + '+', 327, + '-', 329, + '.', 359, + '/', 331, + '0', 388, + ':', 89, + ';', 254, + '<', 323, + '=', 264, + '>', 325, + '?', 362, + '@', 357, + 'B', 575, + '[', 269, + '^', 333, + '_', 400, + 'b', 420, + 'c', 422, + 'd', 472, + 'e', 513, + 'f', 453, + 'i', 425, + 'l', 485, + 'm', 460, + 'p', 566, + 'r', 473, + 's', 550, + 't', 537, + 'u', 429, + 'w', 497, + '{', 249, + '|', 340, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 247: + if (eof) ADVANCE(248); + ADVANCE_MAP( + '!', 266, + '"', 402, + '#', 268, + '\'', 24, + '(', 290, + ')', 293, + '*', 288, + ',', 277, + '-', 328, + '/', 62, + '0', 388, + ':', 262, + ';', 254, + '<', 415, + '=', 263, + '>', 324, + '@', 357, + 'B', 575, + '[', 269, + ']', 270, + '_', 400, + 'b', 420, + 'c', 422, + 'd', 472, + 'e', 520, + 'f', 453, + 'i', 425, + 'l', 485, + 'm', 460, + 'p', 566, + 'r', 473, + 's', 550, + 't', 537, + 'u', 429, + 'w', 497, + '{', 249, + '|', 338, + '}', 250, + '~', 335, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 248: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_impl); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_impl); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_of); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_trait); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_type); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(286); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(353); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(353); + if (lookahead == '>') ADVANCE(361); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(354); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_mod); + END_STATE(); + case 272: + ACCEPT_TOKEN(anon_sym_mod); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 273: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 274: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 275: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_enum); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 277: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 278: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym_fn); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 281: + ACCEPT_TOKEN(anon_sym_implicits); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 283: + ACCEPT_TOKEN(anon_sym_let); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 284: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 289: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(347); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_u8); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_u8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_i8); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_i8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_u16); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_i16); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_u32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_i32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_u64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_i64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_u128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_i128); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_i128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 314: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 315: + ACCEPT_TOKEN(anon_sym_usize); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 316: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_bool); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 318: + ACCEPT_TOKEN(anon_sym_ByteArray); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_ByteArray); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_felt252); + END_STATE(); + case 321: + ACCEPT_TOKEN(anon_sym_felt252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 322: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 323: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(343); + if (lookahead == '=') ADVANCE(356); + END_STATE(); + case 324: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 325: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(355); + if (lookahead == '>') ADVANCE(344); + END_STATE(); + case 326: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 327: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(345); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 329: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(346); + END_STATE(); + case 330: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(346); + if (lookahead == '>') ADVANCE(280); + END_STATE(); + case 331: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(586); + if (lookahead == '=') ADVANCE(348); + END_STATE(); + case 332: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(349); + END_STATE(); + case 333: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 334: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(350); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(341); + END_STATE(); + case 337: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '=') ADVANCE(351); + END_STATE(); + case 338: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(352); + if (lookahead == '|') ADVANCE(342); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(342); + END_STATE(); + case 341: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 342: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 343: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 353: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 354: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 356: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(358); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 364: + ACCEPT_TOKEN(anon_sym_break); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_continue); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 368: + ACCEPT_TOKEN(anon_sym_default); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 369: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_extern); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_nopanic); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_nopanic); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_loop); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_loop); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_match); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_pub); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_pub); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_return); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 384: + ACCEPT_TOKEN(anon_sym_static); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 385: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 386: + ACCEPT_TOKEN(anon_sym_while); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 387: + ACCEPT_TOKEN(sym_numeric_literal); + END_STATE(); + case 388: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(389); + if (lookahead == 'b') ADVANCE(209); + if (lookahead == 'o') ADVANCE(210); + if (lookahead == 'x') ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + END_STATE(); + case 389: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(389); + if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'i') ADVANCE(66); + if (lookahead == 'u') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + END_STATE(); + case 390: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + END_STATE(); + case 391: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(391); + if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'i') ADVANCE(66); + if (lookahead == 'u') ADVANCE(65); + if (lookahead == '0' || + lookahead == '1') ADVANCE(392); + END_STATE(); + case 392: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(391); + if (lookahead == '0' || + lookahead == '1') ADVANCE(392); + END_STATE(); + case 393: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(393); + if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'i') ADVANCE(66); + if (lookahead == 'u') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + END_STATE(); + case 394: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + END_STATE(); + case 395: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(396); + if (lookahead == 'e') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + END_STATE(); + case 396: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(396); + if (lookahead == 'f') ADVANCE(395); + if (lookahead == 'i') ADVANCE(66); + if (lookahead == 'u') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(398); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(396); + if (lookahead == 'l') ADVANCE(197); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + END_STATE(); + case 398: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(396); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + END_STATE(); + case 399: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(399); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(432); + if (lookahead == 'u') ADVANCE(431); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 400: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 401: + ACCEPT_TOKEN(sym_numeric_literal); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 402: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + END_STATE(); + case 403: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '\n') ADVANCE(406); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\\') ADVANCE(587); + if (lookahead != 0) ADVANCE(403); + END_STATE(); + case 404: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '/') ADVANCE(405); + if (lookahead == '\\') ADVANCE(213); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(404); + if (lookahead != 0 && + lookahead != '"') ADVANCE(406); + END_STATE(); + case 405: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '/') ADVANCE(403); + if (lookahead == '\\') ADVANCE(213); + if (lookahead != 0 && + lookahead != '"') ADVANCE(406); + END_STATE(); + case 406: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '\\') ADVANCE(213); + if (lookahead != 0 && + lookahead != '"') ADVANCE(406); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym_shortstring_literal); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym_shortstring_literal); + if (lookahead == '_') ADVANCE(133); + END_STATE(); + case 410: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_true); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 412: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 413: + ACCEPT_TOKEN(anon_sym_false); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 414: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_LT2); + END_STATE(); + case 416: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 417: + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 418: + ACCEPT_TOKEN(anon_sym_ref); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_ref); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(528); + if (lookahead == 'r') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 423: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 424: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(402); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 425: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(433); + if (lookahead == '3') ADVANCE(434); + if (lookahead == '6') ADVANCE(442); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 'f') ADVANCE(370); + if (lookahead == 'm') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 426: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(433); + if (lookahead == '3') ADVANCE(434); + if (lookahead == '6') ADVANCE(442); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 'f') ADVANCE(370); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 427: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(433); + if (lookahead == '3') ADVANCE(434); + if (lookahead == '6') ADVANCE(442); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 'm') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 428: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(433); + if (lookahead == '3') ADVANCE(434); + if (lookahead == '6') ADVANCE(442); + if (lookahead == '8') ADVANCE(297); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 429: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(435); + if (lookahead == '6') ADVANCE(443); + if (lookahead == '8') ADVANCE(295); + if (lookahead == 's') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 430: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(435); + if (lookahead == '6') ADVANCE(443); + if (lookahead == '8') ADVANCE(295); + if (lookahead == 's') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 431: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(440); + if (lookahead == '2') ADVANCE(445); + if (lookahead == '3') ADVANCE(436); + if (lookahead == '6') ADVANCE(444); + if (lookahead == '8') ADVANCE(401); + if (lookahead == 's') ADVANCE(505); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 432: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(440); + if (lookahead == '3') ADVANCE(436); + if (lookahead == '6') ADVANCE(444); + if (lookahead == '8') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 433: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(450); + if (lookahead == '6') ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 434: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 435: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(303); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(451); + if (lookahead == '6') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(449); + if (lookahead == '6') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(446); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '5') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '5') ADVANCE(436); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '5') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '6') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '8') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '8') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '8') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(507); + if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(507); + if (lookahead == 'e') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'u') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'o') ADVANCE(471); + if (lookahead == 'u') ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'o') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'u') ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(523); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(563); + if (lookahead == 'r') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(380); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(374); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(498); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(555); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(494); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'i') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(411); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(258); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(413); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(386); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(366); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(417); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(551); + if (lookahead == 'o') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(495); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 493: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(515); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 494: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(419); + if (lookahead == 't') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 495: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 496: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(463); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 497: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(378); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(512); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(554); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 507: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 508: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 509: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 510: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 511: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(556); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 512: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(549); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'x') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(565); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(372); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(382); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'x') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(572); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 523: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 524: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(562); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 525: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 526: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 527: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 528: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(508); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 529: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 530: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 531: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 532: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(376); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 533: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 534: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(464); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 535: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(491); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 536: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 537: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(457); + if (lookahead == 'y') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 538: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(584); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 539: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(518); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 540: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 541: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 542: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(519); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 543: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 544: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(458); + if (lookahead == 'y') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 545: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(570); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 546: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(553); + if (lookahead == 't') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 547: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(553); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 548: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 549: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 550: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(541); + if (lookahead == 'u') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 551: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 553: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 554: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 555: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 556: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(368); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 557: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(465); + if (lookahead == 'u') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 558: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 559: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 560: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 561: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 562: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 563: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(501); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 564: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 565: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(441); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 566: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 567: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 568: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 569: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 570: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 571: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 572: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 573: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 574: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 575: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(560); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 576: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 577: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(579); + END_STATE(); + case 578: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(579); + END_STATE(); + case 579: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 580: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 581: + ACCEPT_TOKEN(sym_mutable_specifier); + END_STATE(); + case 582: + ACCEPT_TOKEN(sym_mutable_specifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 583: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 584: + ACCEPT_TOKEN(sym_super); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + END_STATE(); + case 585: + ACCEPT_TOKEN(sym_crate); + END_STATE(); + case 586: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(586); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(403); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 247}, + [2] = {.lex_state = 247}, + [3] = {.lex_state = 247}, + [4] = {.lex_state = 247}, + [5] = {.lex_state = 247}, + [6] = {.lex_state = 247}, + [7] = {.lex_state = 247}, + [8] = {.lex_state = 247}, + [9] = {.lex_state = 247}, + [10] = {.lex_state = 247}, + [11] = {.lex_state = 247}, + [12] = {.lex_state = 247}, + [13] = {.lex_state = 247}, + [14] = {.lex_state = 247}, + [15] = {.lex_state = 247}, + [16] = {.lex_state = 247}, + [17] = {.lex_state = 247}, + [18] = {.lex_state = 247}, + [19] = {.lex_state = 247}, + [20] = {.lex_state = 247}, + [21] = {.lex_state = 2}, + [22] = {.lex_state = 1}, + [23] = {.lex_state = 2}, + [24] = {.lex_state = 1}, + [25] = {.lex_state = 1}, + [26] = {.lex_state = 1}, + [27] = {.lex_state = 1}, + [28] = {.lex_state = 1}, + [29] = {.lex_state = 1}, + [30] = {.lex_state = 1}, + [31] = {.lex_state = 1}, + [32] = {.lex_state = 1}, + [33] = {.lex_state = 1}, + [34] = {.lex_state = 1}, + [35] = {.lex_state = 1}, + [36] = {.lex_state = 1}, + [37] = {.lex_state = 1}, + [38] = {.lex_state = 1}, + [39] = {.lex_state = 1}, + [40] = {.lex_state = 1}, + [41] = {.lex_state = 1}, + [42] = {.lex_state = 1}, + [43] = {.lex_state = 1}, + [44] = {.lex_state = 1}, + [45] = {.lex_state = 1}, + [46] = {.lex_state = 1}, + [47] = {.lex_state = 1}, + [48] = {.lex_state = 1}, + [49] = {.lex_state = 1}, + [50] = {.lex_state = 1}, + [51] = {.lex_state = 1}, + [52] = {.lex_state = 1}, + [53] = {.lex_state = 1}, + [54] = {.lex_state = 3}, + [55] = {.lex_state = 3}, + [56] = {.lex_state = 2}, + [57] = {.lex_state = 2}, + [58] = {.lex_state = 1}, + [59] = {.lex_state = 1}, + [60] = {.lex_state = 1}, + [61] = {.lex_state = 1}, + [62] = {.lex_state = 1}, + [63] = {.lex_state = 1}, + [64] = {.lex_state = 1}, + [65] = {.lex_state = 1}, + [66] = {.lex_state = 1}, + [67] = {.lex_state = 1}, + [68] = {.lex_state = 245}, + [69] = {.lex_state = 245}, + [70] = {.lex_state = 245}, + [71] = {.lex_state = 245}, + [72] = {.lex_state = 245}, + [73] = {.lex_state = 245}, + [74] = {.lex_state = 245}, + [75] = {.lex_state = 245}, + [76] = {.lex_state = 245}, + [77] = {.lex_state = 245}, + [78] = {.lex_state = 245}, + [79] = {.lex_state = 245}, + [80] = {.lex_state = 245}, + [81] = {.lex_state = 245}, + [82] = {.lex_state = 245}, + [83] = {.lex_state = 246}, + [84] = {.lex_state = 246}, + [85] = {.lex_state = 246}, + [86] = {.lex_state = 246}, + [87] = {.lex_state = 5}, + [88] = {.lex_state = 245}, + [89] = {.lex_state = 245}, + [90] = {.lex_state = 5}, + [91] = {.lex_state = 5}, + [92] = {.lex_state = 5}, + [93] = {.lex_state = 5}, + [94] = {.lex_state = 245}, + [95] = {.lex_state = 5}, + [96] = {.lex_state = 5}, + [97] = {.lex_state = 5}, + [98] = {.lex_state = 5}, + [99] = {.lex_state = 5}, + [100] = {.lex_state = 5}, + [101] = {.lex_state = 5}, + [102] = {.lex_state = 5}, + [103] = {.lex_state = 5}, + [104] = {.lex_state = 5}, + [105] = {.lex_state = 5}, + [106] = {.lex_state = 5}, + [107] = {.lex_state = 5}, + [108] = {.lex_state = 5}, + [109] = {.lex_state = 5}, + [110] = {.lex_state = 5}, + [111] = {.lex_state = 5}, + [112] = {.lex_state = 5}, + [113] = {.lex_state = 5}, + [114] = {.lex_state = 5}, + [115] = {.lex_state = 5}, + [116] = {.lex_state = 5}, + [117] = {.lex_state = 5}, + [118] = {.lex_state = 6}, + [119] = {.lex_state = 6}, + [120] = {.lex_state = 5}, + [121] = {.lex_state = 6}, + [122] = {.lex_state = 6}, + [123] = {.lex_state = 5}, + [124] = {.lex_state = 5}, + [125] = {.lex_state = 6}, + [126] = {.lex_state = 6}, + [127] = {.lex_state = 5}, + [128] = {.lex_state = 6}, + [129] = {.lex_state = 6}, + [130] = {.lex_state = 5}, + [131] = {.lex_state = 5}, + [132] = {.lex_state = 5}, + [133] = {.lex_state = 5}, + [134] = {.lex_state = 5}, + [135] = {.lex_state = 5}, + [136] = {.lex_state = 5}, + [137] = {.lex_state = 5}, + [138] = {.lex_state = 5}, + [139] = {.lex_state = 7}, + [140] = {.lex_state = 7}, + [141] = {.lex_state = 7}, + [142] = {.lex_state = 5}, + [143] = {.lex_state = 5}, + [144] = {.lex_state = 5}, + [145] = {.lex_state = 5}, + [146] = {.lex_state = 5}, + [147] = {.lex_state = 5}, + [148] = {.lex_state = 5}, + [149] = {.lex_state = 5}, + [150] = {.lex_state = 5}, + [151] = {.lex_state = 5}, + [152] = {.lex_state = 5}, + [153] = {.lex_state = 5}, + [154] = {.lex_state = 5}, + [155] = {.lex_state = 5}, + [156] = {.lex_state = 5}, + [157] = {.lex_state = 5}, + [158] = {.lex_state = 5}, + [159] = {.lex_state = 5}, + [160] = {.lex_state = 5}, + [161] = {.lex_state = 5}, + [162] = {.lex_state = 5}, + [163] = {.lex_state = 5}, + [164] = {.lex_state = 5}, + [165] = {.lex_state = 5}, + [166] = {.lex_state = 5}, + [167] = {.lex_state = 5}, + [168] = {.lex_state = 5}, + [169] = {.lex_state = 5}, + [170] = {.lex_state = 5}, + [171] = {.lex_state = 5}, + [172] = {.lex_state = 5}, + [173] = {.lex_state = 5}, + [174] = {.lex_state = 5}, + [175] = {.lex_state = 5}, + [176] = {.lex_state = 5}, + [177] = {.lex_state = 5}, + [178] = {.lex_state = 5}, + [179] = {.lex_state = 5}, + [180] = {.lex_state = 5}, + [181] = {.lex_state = 5}, + [182] = {.lex_state = 5}, + [183] = {.lex_state = 5}, + [184] = {.lex_state = 5}, + [185] = {.lex_state = 5}, + [186] = {.lex_state = 5}, + [187] = {.lex_state = 5}, + [188] = {.lex_state = 5}, + [189] = {.lex_state = 5}, + [190] = {.lex_state = 5}, + [191] = {.lex_state = 5}, + [192] = {.lex_state = 5}, + [193] = {.lex_state = 5}, + [194] = {.lex_state = 5}, + [195] = {.lex_state = 5}, + [196] = {.lex_state = 5}, + [197] = {.lex_state = 5}, + [198] = {.lex_state = 5}, + [199] = {.lex_state = 5}, + [200] = {.lex_state = 5}, + [201] = {.lex_state = 5}, + [202] = {.lex_state = 5}, + [203] = {.lex_state = 5}, + [204] = {.lex_state = 5}, + [205] = {.lex_state = 5}, + [206] = {.lex_state = 5}, + [207] = {.lex_state = 5}, + [208] = {.lex_state = 5}, + [209] = {.lex_state = 5}, + [210] = {.lex_state = 5}, + [211] = {.lex_state = 5}, + [212] = {.lex_state = 5}, + [213] = {.lex_state = 5}, + [214] = {.lex_state = 5}, + [215] = {.lex_state = 5}, + [216] = {.lex_state = 5}, + [217] = {.lex_state = 5}, + [218] = {.lex_state = 5}, + [219] = {.lex_state = 5}, + [220] = {.lex_state = 5}, + [221] = {.lex_state = 10}, + [222] = {.lex_state = 10}, + [223] = {.lex_state = 10}, + [224] = {.lex_state = 10}, + [225] = {.lex_state = 10}, + [226] = {.lex_state = 10}, + [227] = {.lex_state = 10}, + [228] = {.lex_state = 16}, + [229] = {.lex_state = 11}, + [230] = {.lex_state = 10}, + [231] = {.lex_state = 16}, + [232] = {.lex_state = 10}, + [233] = {.lex_state = 247}, + [234] = {.lex_state = 10}, + [235] = {.lex_state = 247}, + [236] = {.lex_state = 16}, + [237] = {.lex_state = 11}, + [238] = {.lex_state = 11}, + [239] = {.lex_state = 11}, + [240] = {.lex_state = 10}, + [241] = {.lex_state = 16}, + [242] = {.lex_state = 247}, + [243] = {.lex_state = 10}, + [244] = {.lex_state = 12}, + [245] = {.lex_state = 16}, + [246] = {.lex_state = 12}, + [247] = {.lex_state = 12}, + [248] = {.lex_state = 12}, + [249] = {.lex_state = 12}, + [250] = {.lex_state = 12}, + [251] = {.lex_state = 12}, + [252] = {.lex_state = 12}, + [253] = {.lex_state = 12}, + [254] = {.lex_state = 12}, + [255] = {.lex_state = 12}, + [256] = {.lex_state = 12}, + [257] = {.lex_state = 12}, + [258] = {.lex_state = 247}, + [259] = {.lex_state = 247}, + [260] = {.lex_state = 247}, + [261] = {.lex_state = 247}, + [262] = {.lex_state = 247}, + [263] = {.lex_state = 247}, + [264] = {.lex_state = 247}, + [265] = {.lex_state = 247}, + [266] = {.lex_state = 247}, + [267] = {.lex_state = 247}, + [268] = {.lex_state = 247}, + [269] = {.lex_state = 247}, + [270] = {.lex_state = 247}, + [271] = {.lex_state = 247}, + [272] = {.lex_state = 247}, + [273] = {.lex_state = 247}, + [274] = {.lex_state = 247}, + [275] = {.lex_state = 247}, + [276] = {.lex_state = 247}, + [277] = {.lex_state = 247}, + [278] = {.lex_state = 247}, + [279] = {.lex_state = 247}, + [280] = {.lex_state = 247}, + [281] = {.lex_state = 247}, + [282] = {.lex_state = 247}, + [283] = {.lex_state = 247}, + [284] = {.lex_state = 247}, + [285] = {.lex_state = 247}, + [286] = {.lex_state = 247}, + [287] = {.lex_state = 247}, + [288] = {.lex_state = 247}, + [289] = {.lex_state = 247}, + [290] = {.lex_state = 247}, + [291] = {.lex_state = 247}, + [292] = {.lex_state = 247}, + [293] = {.lex_state = 247}, + [294] = {.lex_state = 247}, + [295] = {.lex_state = 247}, + [296] = {.lex_state = 247}, + [297] = {.lex_state = 247}, + [298] = {.lex_state = 247}, + [299] = {.lex_state = 247}, + [300] = {.lex_state = 247}, + [301] = {.lex_state = 247}, + [302] = {.lex_state = 247}, + [303] = {.lex_state = 247}, + [304] = {.lex_state = 247}, + [305] = {.lex_state = 247}, + [306] = {.lex_state = 247}, + [307] = {.lex_state = 247}, + [308] = {.lex_state = 247}, + [309] = {.lex_state = 247}, + [310] = {.lex_state = 247}, + [311] = {.lex_state = 247}, + [312] = {.lex_state = 247}, + [313] = {.lex_state = 247}, + [314] = {.lex_state = 247}, + [315] = {.lex_state = 247}, + [316] = {.lex_state = 247}, + [317] = {.lex_state = 247}, + [318] = {.lex_state = 247}, + [319] = {.lex_state = 247}, + [320] = {.lex_state = 247}, + [321] = {.lex_state = 247}, + [322] = {.lex_state = 247}, + [323] = {.lex_state = 247}, + [324] = {.lex_state = 247}, + [325] = {.lex_state = 247}, + [326] = {.lex_state = 247}, + [327] = {.lex_state = 247}, + [328] = {.lex_state = 247}, + [329] = {.lex_state = 247}, + [330] = {.lex_state = 247}, + [331] = {.lex_state = 247}, + [332] = {.lex_state = 247}, + [333] = {.lex_state = 247}, + [334] = {.lex_state = 247}, + [335] = {.lex_state = 247}, + [336] = {.lex_state = 247}, + [337] = {.lex_state = 15}, + [338] = {.lex_state = 16}, + [339] = {.lex_state = 15}, + [340] = {.lex_state = 16}, + [341] = {.lex_state = 15}, + [342] = {.lex_state = 15}, + [343] = {.lex_state = 15}, + [344] = {.lex_state = 15}, + [345] = {.lex_state = 15}, + [346] = {.lex_state = 15}, + [347] = {.lex_state = 15}, + [348] = {.lex_state = 15}, + [349] = {.lex_state = 15}, + [350] = {.lex_state = 15}, + [351] = {.lex_state = 15}, + [352] = {.lex_state = 15}, + [353] = {.lex_state = 15}, + [354] = {.lex_state = 15}, + [355] = {.lex_state = 15}, + [356] = {.lex_state = 15}, + [357] = {.lex_state = 15}, + [358] = {.lex_state = 15}, + [359] = {.lex_state = 15}, + [360] = {.lex_state = 15}, + [361] = {.lex_state = 15}, + [362] = {.lex_state = 15}, + [363] = {.lex_state = 15}, + [364] = {.lex_state = 15}, + [365] = {.lex_state = 15}, + [366] = {.lex_state = 15}, + [367] = {.lex_state = 15}, + [368] = {.lex_state = 15}, + [369] = {.lex_state = 15}, + [370] = {.lex_state = 15}, + [371] = {.lex_state = 15}, + [372] = {.lex_state = 15}, + [373] = {.lex_state = 15}, + [374] = {.lex_state = 15}, + [375] = {.lex_state = 15}, + [376] = {.lex_state = 15}, + [377] = {.lex_state = 15}, + [378] = {.lex_state = 15}, + [379] = {.lex_state = 15}, + [380] = {.lex_state = 15}, + [381] = {.lex_state = 15}, + [382] = {.lex_state = 15}, + [383] = {.lex_state = 15}, + [384] = {.lex_state = 15}, + [385] = {.lex_state = 5}, + [386] = {.lex_state = 15}, + [387] = {.lex_state = 15}, + [388] = {.lex_state = 15}, + [389] = {.lex_state = 15}, + [390] = {.lex_state = 15}, + [391] = {.lex_state = 15}, + [392] = {.lex_state = 15}, + [393] = {.lex_state = 15}, + [394] = {.lex_state = 17}, + [395] = {.lex_state = 17}, + [396] = {.lex_state = 17}, + [397] = {.lex_state = 17}, + [398] = {.lex_state = 17}, + [399] = {.lex_state = 17}, + [400] = {.lex_state = 5}, + [401] = {.lex_state = 17}, + [402] = {.lex_state = 17}, + [403] = {.lex_state = 17}, + [404] = {.lex_state = 17}, + [405] = {.lex_state = 5}, + [406] = {.lex_state = 4}, + [407] = {.lex_state = 4}, + [408] = {.lex_state = 2}, + [409] = {.lex_state = 4}, + [410] = {.lex_state = 4}, + [411] = {.lex_state = 4}, + [412] = {.lex_state = 4}, + [413] = {.lex_state = 4}, + [414] = {.lex_state = 2}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 2}, + [417] = {.lex_state = 2}, + [418] = {.lex_state = 2}, + [419] = {.lex_state = 2}, + [420] = {.lex_state = 56}, + [421] = {.lex_state = 4}, + [422] = {.lex_state = 2}, + [423] = {.lex_state = 2}, + [424] = {.lex_state = 4}, + [425] = {.lex_state = 2}, + [426] = {.lex_state = 2}, + [427] = {.lex_state = 2}, + [428] = {.lex_state = 2}, + [429] = {.lex_state = 2}, + [430] = {.lex_state = 4}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 2}, + [433] = {.lex_state = 56}, + [434] = {.lex_state = 2}, + [435] = {.lex_state = 56}, + [436] = {.lex_state = 2}, + [437] = {.lex_state = 56}, + [438] = {.lex_state = 2}, + [439] = {.lex_state = 2}, + [440] = {.lex_state = 2}, + [441] = {.lex_state = 2}, + [442] = {.lex_state = 2}, + [443] = {.lex_state = 2}, + [444] = {.lex_state = 2}, + [445] = {.lex_state = 2}, + [446] = {.lex_state = 2}, + [447] = {.lex_state = 2}, + [448] = {.lex_state = 2}, + [449] = {.lex_state = 2}, + [450] = {.lex_state = 2}, + [451] = {.lex_state = 2}, + [452] = {.lex_state = 2}, + [453] = {.lex_state = 2}, + [454] = {.lex_state = 2}, + [455] = {.lex_state = 2}, + [456] = {.lex_state = 2}, + [457] = {.lex_state = 2}, + [458] = {.lex_state = 2}, + [459] = {.lex_state = 2}, + [460] = {.lex_state = 2}, + [461] = {.lex_state = 2}, + [462] = {.lex_state = 2}, + [463] = {.lex_state = 2}, + [464] = {.lex_state = 2}, + [465] = {.lex_state = 2}, + [466] = {.lex_state = 2}, + [467] = {.lex_state = 2}, + [468] = {.lex_state = 2}, + [469] = {.lex_state = 2}, + [470] = {.lex_state = 2}, + [471] = {.lex_state = 2}, + [472] = {.lex_state = 2}, + [473] = {.lex_state = 2}, + [474] = {.lex_state = 2}, + [475] = {.lex_state = 2}, + [476] = {.lex_state = 2}, + [477] = {.lex_state = 2}, + [478] = {.lex_state = 2}, + [479] = {.lex_state = 2}, + [480] = {.lex_state = 2}, + [481] = {.lex_state = 2}, + [482] = {.lex_state = 2}, + [483] = {.lex_state = 2}, + [484] = {.lex_state = 2}, + [485] = {.lex_state = 2}, + [486] = {.lex_state = 2}, + [487] = {.lex_state = 10}, + [488] = {.lex_state = 10}, + [489] = {.lex_state = 10}, + [490] = {.lex_state = 10}, + [491] = {.lex_state = 10}, + [492] = {.lex_state = 3}, + [493] = {.lex_state = 2}, + [494] = {.lex_state = 10}, + [495] = {.lex_state = 10}, + [496] = {.lex_state = 10}, + [497] = {.lex_state = 10}, + [498] = {.lex_state = 10}, + [499] = {.lex_state = 10}, + [500] = {.lex_state = 10}, + [501] = {.lex_state = 10}, + [502] = {.lex_state = 10}, + [503] = {.lex_state = 10}, + [504] = {.lex_state = 10}, + [505] = {.lex_state = 10}, + [506] = {.lex_state = 10}, + [507] = {.lex_state = 10}, + [508] = {.lex_state = 10}, + [509] = {.lex_state = 10}, + [510] = {.lex_state = 10}, + [511] = {.lex_state = 10}, + [512] = {.lex_state = 10}, + [513] = {.lex_state = 10}, + [514] = {.lex_state = 10}, + [515] = {.lex_state = 10}, + [516] = {.lex_state = 15}, + [517] = {.lex_state = 10}, + [518] = {.lex_state = 10}, + [519] = {.lex_state = 10}, + [520] = {.lex_state = 10}, + [521] = {.lex_state = 10}, + [522] = {.lex_state = 10}, + [523] = {.lex_state = 10}, + [524] = {.lex_state = 10}, + [525] = {.lex_state = 10}, + [526] = {.lex_state = 10}, + [527] = {.lex_state = 10}, + [528] = {.lex_state = 2}, + [529] = {.lex_state = 10}, + [530] = {.lex_state = 10}, + [531] = {.lex_state = 10}, + [532] = {.lex_state = 10}, + [533] = {.lex_state = 10}, + [534] = {.lex_state = 2}, + [535] = {.lex_state = 10}, + [536] = {.lex_state = 10}, + [537] = {.lex_state = 10}, + [538] = {.lex_state = 10}, + [539] = {.lex_state = 10}, + [540] = {.lex_state = 10}, + [541] = {.lex_state = 10}, + [542] = {.lex_state = 10}, + [543] = {.lex_state = 10}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 10}, + [546] = {.lex_state = 10}, + [547] = {.lex_state = 10}, + [548] = {.lex_state = 10}, + [549] = {.lex_state = 10}, + [550] = {.lex_state = 10}, + [551] = {.lex_state = 10}, + [552] = {.lex_state = 10}, + [553] = {.lex_state = 10}, + [554] = {.lex_state = 10}, + [555] = {.lex_state = 10}, + [556] = {.lex_state = 10}, + [557] = {.lex_state = 10}, + [558] = {.lex_state = 10}, + [559] = {.lex_state = 10}, + [560] = {.lex_state = 10}, + [561] = {.lex_state = 10}, + [562] = {.lex_state = 10}, + [563] = {.lex_state = 10}, + [564] = {.lex_state = 10}, + [565] = {.lex_state = 10}, + [566] = {.lex_state = 10}, + [567] = {.lex_state = 10}, + [568] = {.lex_state = 10}, + [569] = {.lex_state = 10}, + [570] = {.lex_state = 10}, + [571] = {.lex_state = 2}, + [572] = {.lex_state = 55}, + [573] = {.lex_state = 3}, + [574] = {.lex_state = 2}, + [575] = {.lex_state = 2}, + [576] = {.lex_state = 3}, + [577] = {.lex_state = 2}, + [578] = {.lex_state = 3}, + [579] = {.lex_state = 20}, + [580] = {.lex_state = 20}, + [581] = {.lex_state = 2}, + [582] = {.lex_state = 20}, + [583] = {.lex_state = 20}, + [584] = {.lex_state = 20}, + [585] = {.lex_state = 55}, + [586] = {.lex_state = 20}, + [587] = {.lex_state = 20}, + [588] = {.lex_state = 2}, + [589] = {.lex_state = 2}, + [590] = {.lex_state = 3}, + [591] = {.lex_state = 55}, + [592] = {.lex_state = 2}, + [593] = {.lex_state = 55}, + [594] = {.lex_state = 15}, + [595] = {.lex_state = 55}, + [596] = {.lex_state = 3}, + [597] = {.lex_state = 55}, + [598] = {.lex_state = 55}, + [599] = {.lex_state = 55}, + [600] = {.lex_state = 2}, + [601] = {.lex_state = 55}, + [602] = {.lex_state = 55}, + [603] = {.lex_state = 55}, + [604] = {.lex_state = 2}, + [605] = {.lex_state = 2}, + [606] = {.lex_state = 55}, + [607] = {.lex_state = 55}, + [608] = {.lex_state = 55}, + [609] = {.lex_state = 55}, + [610] = {.lex_state = 15}, + [611] = {.lex_state = 55}, + [612] = {.lex_state = 2}, + [613] = {.lex_state = 55}, + [614] = {.lex_state = 3}, + [615] = {.lex_state = 55}, + [616] = {.lex_state = 2}, + [617] = {.lex_state = 55}, + [618] = {.lex_state = 3}, + [619] = {.lex_state = 55}, + [620] = {.lex_state = 55}, + [621] = {.lex_state = 2}, + [622] = {.lex_state = 2}, + [623] = {.lex_state = 2}, + [624] = {.lex_state = 2}, + [625] = {.lex_state = 2}, + [626] = {.lex_state = 2}, + [627] = {.lex_state = 2}, + [628] = {.lex_state = 55}, + [629] = {.lex_state = 55}, + [630] = {.lex_state = 55}, + [631] = {.lex_state = 2}, + [632] = {.lex_state = 2}, + [633] = {.lex_state = 2}, + [634] = {.lex_state = 2}, + [635] = {.lex_state = 2}, + [636] = {.lex_state = 20}, + [637] = {.lex_state = 2}, + [638] = {.lex_state = 2}, + [639] = {.lex_state = 55}, + [640] = {.lex_state = 55}, + [641] = {.lex_state = 2}, + [642] = {.lex_state = 14}, + [643] = {.lex_state = 2}, + [644] = {.lex_state = 2}, + [645] = {.lex_state = 3}, + [646] = {.lex_state = 3}, + [647] = {.lex_state = 2}, + [648] = {.lex_state = 55}, + [649] = {.lex_state = 55}, + [650] = {.lex_state = 55}, + [651] = {.lex_state = 20}, + [652] = {.lex_state = 55}, + [653] = {.lex_state = 2}, + [654] = {.lex_state = 2}, + [655] = {.lex_state = 55}, + [656] = {.lex_state = 55}, + [657] = {.lex_state = 2}, + [658] = {.lex_state = 2}, + [659] = {.lex_state = 2}, + [660] = {.lex_state = 2}, + [661] = {.lex_state = 2}, + [662] = {.lex_state = 20}, + [663] = {.lex_state = 2}, + [664] = {.lex_state = 3}, + [665] = {.lex_state = 3}, + [666] = {.lex_state = 55}, + [667] = {.lex_state = 3}, + [668] = {.lex_state = 2}, + [669] = {.lex_state = 20}, + [670] = {.lex_state = 3}, + [671] = {.lex_state = 55}, + [672] = {.lex_state = 3}, + [673] = {.lex_state = 3}, + [674] = {.lex_state = 55}, + [675] = {.lex_state = 2}, + [676] = {.lex_state = 2}, + [677] = {.lex_state = 2}, + [678] = {.lex_state = 2}, + [679] = {.lex_state = 2}, + [680] = {.lex_state = 55}, + [681] = {.lex_state = 55}, + [682] = {.lex_state = 2}, + [683] = {.lex_state = 2}, + [684] = {.lex_state = 55}, + [685] = {.lex_state = 2}, + [686] = {.lex_state = 16}, + [687] = {.lex_state = 2}, + [688] = {.lex_state = 55}, + [689] = {.lex_state = 2}, + [690] = {.lex_state = 2}, + [691] = {.lex_state = 2}, + [692] = {.lex_state = 55}, + [693] = {.lex_state = 55}, + [694] = {.lex_state = 2}, + [695] = {.lex_state = 2}, + [696] = {.lex_state = 3}, + [697] = {.lex_state = 2}, + [698] = {.lex_state = 2}, + [699] = {.lex_state = 2}, + [700] = {.lex_state = 2}, + [701] = {.lex_state = 2}, + [702] = {.lex_state = 2}, + [703] = {.lex_state = 2}, + [704] = {.lex_state = 14}, + [705] = {.lex_state = 2}, + [706] = {.lex_state = 2}, + [707] = {.lex_state = 3}, + [708] = {.lex_state = 2}, + [709] = {.lex_state = 15}, + [710] = {.lex_state = 2}, + [711] = {.lex_state = 2}, + [712] = {.lex_state = 2}, + [713] = {.lex_state = 3}, + [714] = {.lex_state = 2}, + [715] = {.lex_state = 2}, + [716] = {.lex_state = 2}, + [717] = {.lex_state = 3}, + [718] = {.lex_state = 15}, + [719] = {.lex_state = 2}, + [720] = {.lex_state = 2}, + [721] = {.lex_state = 2}, + [722] = {.lex_state = 3}, + [723] = {.lex_state = 3}, + [724] = {.lex_state = 3}, + [725] = {.lex_state = 3}, + [726] = {.lex_state = 2}, + [727] = {.lex_state = 2}, + [728] = {.lex_state = 2}, + [729] = {.lex_state = 2}, + [730] = {.lex_state = 2}, + [731] = {.lex_state = 2}, + [732] = {.lex_state = 2}, + [733] = {.lex_state = 14}, + [734] = {.lex_state = 2}, + [735] = {.lex_state = 2}, + [736] = {.lex_state = 14}, + [737] = {.lex_state = 2}, + [738] = {.lex_state = 3}, + [739] = {.lex_state = 2}, + [740] = {.lex_state = 3}, + [741] = {.lex_state = 2}, + [742] = {.lex_state = 2}, + [743] = {.lex_state = 2}, + [744] = {.lex_state = 2}, + [745] = {.lex_state = 3}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 2}, + [748] = {.lex_state = 15}, + [749] = {.lex_state = 3}, + [750] = {.lex_state = 2}, + [751] = {.lex_state = 2}, + [752] = {.lex_state = 3}, + [753] = {.lex_state = 2}, + [754] = {.lex_state = 3}, + [755] = {.lex_state = 3}, + [756] = {.lex_state = 2}, + [757] = {.lex_state = 2}, + [758] = {.lex_state = 3}, + [759] = {.lex_state = 3}, + [760] = {.lex_state = 3}, + [761] = {.lex_state = 2}, + [762] = {.lex_state = 3}, + [763] = {.lex_state = 2}, + [764] = {.lex_state = 15}, + [765] = {.lex_state = 3}, + [766] = {.lex_state = 3}, + [767] = {.lex_state = 2}, + [768] = {.lex_state = 3}, + [769] = {.lex_state = 3}, + [770] = {.lex_state = 3}, + [771] = {.lex_state = 3}, + [772] = {.lex_state = 3}, + [773] = {.lex_state = 3}, + [774] = {.lex_state = 3}, + [775] = {.lex_state = 3}, + [776] = {.lex_state = 3}, + [777] = {.lex_state = 3}, + [778] = {.lex_state = 3}, + [779] = {.lex_state = 3}, + [780] = {.lex_state = 3}, + [781] = {.lex_state = 3}, + [782] = {.lex_state = 3}, + [783] = {.lex_state = 3}, + [784] = {.lex_state = 55}, + [785] = {.lex_state = 3}, + [786] = {.lex_state = 15}, + [787] = {.lex_state = 3}, + [788] = {.lex_state = 3}, + [789] = {.lex_state = 3}, + [790] = {.lex_state = 3}, + [791] = {.lex_state = 3}, + [792] = {.lex_state = 3}, + [793] = {.lex_state = 3}, + [794] = {.lex_state = 3}, + [795] = {.lex_state = 3}, + [796] = {.lex_state = 3}, + [797] = {.lex_state = 3}, + [798] = {.lex_state = 3}, + [799] = {.lex_state = 3}, + [800] = {.lex_state = 3}, + [801] = {.lex_state = 3}, + [802] = {.lex_state = 3}, + [803] = {.lex_state = 3}, + [804] = {.lex_state = 3}, + [805] = {.lex_state = 3}, + [806] = {.lex_state = 3}, + [807] = {.lex_state = 3}, + [808] = {.lex_state = 3}, + [809] = {.lex_state = 3}, + [810] = {.lex_state = 3}, + [811] = {.lex_state = 3}, + [812] = {.lex_state = 3}, + [813] = {.lex_state = 3}, + [814] = {.lex_state = 55}, + [815] = {.lex_state = 55}, + [816] = {.lex_state = 55}, + [817] = {.lex_state = 55}, + [818] = {.lex_state = 55}, + [819] = {.lex_state = 55}, + [820] = {.lex_state = 55}, + [821] = {.lex_state = 20}, + [822] = {.lex_state = 20}, + [823] = {.lex_state = 55}, + [824] = {.lex_state = 55}, + [825] = {.lex_state = 55}, + [826] = {.lex_state = 55}, + [827] = {.lex_state = 55}, + [828] = {.lex_state = 55}, + [829] = {.lex_state = 55}, + [830] = {.lex_state = 55}, + [831] = {.lex_state = 55}, + [832] = {.lex_state = 55}, + [833] = {.lex_state = 55}, + [834] = {.lex_state = 55}, + [835] = {.lex_state = 55}, + [836] = {.lex_state = 55}, + [837] = {.lex_state = 8}, + [838] = {.lex_state = 8}, + [839] = {.lex_state = 8}, + [840] = {.lex_state = 8}, + [841] = {.lex_state = 247}, + [842] = {.lex_state = 247}, + [843] = {.lex_state = 247}, + [844] = {.lex_state = 247}, + [845] = {.lex_state = 247}, + [846] = {.lex_state = 247}, + [847] = {.lex_state = 247}, + [848] = {.lex_state = 247}, + [849] = {.lex_state = 247}, + [850] = {.lex_state = 8}, + [851] = {.lex_state = 58}, + [852] = {.lex_state = 247}, + [853] = {.lex_state = 58}, + [854] = {.lex_state = 58}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 8}, + [857] = {.lex_state = 58}, + [858] = {.lex_state = 0}, + [859] = {.lex_state = 8}, + [860] = {.lex_state = 9}, + [861] = {.lex_state = 8}, + [862] = {.lex_state = 8}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 21}, + [865] = {.lex_state = 8}, + [866] = {.lex_state = 247}, + [867] = {.lex_state = 9}, + [868] = {.lex_state = 8}, + [869] = {.lex_state = 8}, + [870] = {.lex_state = 21}, + [871] = {.lex_state = 8}, + [872] = {.lex_state = 9}, + [873] = {.lex_state = 9}, + [874] = {.lex_state = 8}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 8}, + [878] = {.lex_state = 21}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 22}, + [881] = {.lex_state = 8}, + [882] = {.lex_state = 247}, + [883] = {.lex_state = 8}, + [884] = {.lex_state = 8}, + [885] = {.lex_state = 22}, + [886] = {.lex_state = 8}, + [887] = {.lex_state = 21}, + [888] = {.lex_state = 8}, + [889] = {.lex_state = 247}, + [890] = {.lex_state = 8}, + [891] = {.lex_state = 21}, + [892] = {.lex_state = 21}, + [893] = {.lex_state = 247}, + [894] = {.lex_state = 8}, + [895] = {.lex_state = 8}, + [896] = {.lex_state = 9}, + [897] = {.lex_state = 247}, + [898] = {.lex_state = 58}, + [899] = {.lex_state = 22}, + [900] = {.lex_state = 58}, + [901] = {.lex_state = 8}, + [902] = {.lex_state = 22}, + [903] = {.lex_state = 22}, + [904] = {.lex_state = 22}, + [905] = {.lex_state = 22}, + [906] = {.lex_state = 22}, + [907] = {.lex_state = 22}, + [908] = {.lex_state = 58}, + [909] = {.lex_state = 21}, + [910] = {.lex_state = 247}, + [911] = {.lex_state = 22}, + [912] = {.lex_state = 58}, + [913] = {.lex_state = 22}, + [914] = {.lex_state = 58}, + [915] = {.lex_state = 58}, + [916] = {.lex_state = 58}, + [917] = {.lex_state = 58}, + [918] = {.lex_state = 58}, + [919] = {.lex_state = 22}, + [920] = {.lex_state = 22}, + [921] = {.lex_state = 247}, + [922] = {.lex_state = 58}, + [923] = {.lex_state = 58}, + [924] = {.lex_state = 247}, + [925] = {.lex_state = 58}, + [926] = {.lex_state = 247}, + [927] = {.lex_state = 58}, + [928] = {.lex_state = 22}, + [929] = {.lex_state = 58}, + [930] = {.lex_state = 247}, + [931] = {.lex_state = 58}, + [932] = {.lex_state = 58}, + [933] = {.lex_state = 58}, + [934] = {.lex_state = 58}, + [935] = {.lex_state = 58}, + [936] = {.lex_state = 22}, + [937] = {.lex_state = 58}, + [938] = {.lex_state = 22}, + [939] = {.lex_state = 58}, + [940] = {.lex_state = 22}, + [941] = {.lex_state = 58}, + [942] = {.lex_state = 58}, + [943] = {.lex_state = 22}, + [944] = {.lex_state = 58}, + [945] = {.lex_state = 58}, + [946] = {.lex_state = 58}, + [947] = {.lex_state = 22}, + [948] = {.lex_state = 22}, + [949] = {.lex_state = 247}, + [950] = {.lex_state = 58}, + [951] = {.lex_state = 58}, + [952] = {.lex_state = 58}, + [953] = {.lex_state = 58}, + [954] = {.lex_state = 58}, + [955] = {.lex_state = 58}, + [956] = {.lex_state = 58}, + [957] = {.lex_state = 247}, + [958] = {.lex_state = 247}, + [959] = {.lex_state = 247}, + [960] = {.lex_state = 247}, + [961] = {.lex_state = 22}, + [962] = {.lex_state = 9}, + [963] = {.lex_state = 22}, + [964] = {.lex_state = 59}, + [965] = {.lex_state = 247}, + [966] = {.lex_state = 247}, + [967] = {.lex_state = 59}, + [968] = {.lex_state = 247}, + [969] = {.lex_state = 59}, + [970] = {.lex_state = 22}, + [971] = {.lex_state = 22}, + [972] = {.lex_state = 9}, + [973] = {.lex_state = 8}, + [974] = {.lex_state = 247}, + [975] = {.lex_state = 0}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 247}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 247}, + [982] = {.lex_state = 9}, + [983] = {.lex_state = 9}, + [984] = {.lex_state = 247}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 9}, + [988] = {.lex_state = 9}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 247}, + [991] = {.lex_state = 8}, + [992] = {.lex_state = 247}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 60}, + [995] = {.lex_state = 22}, + [996] = {.lex_state = 60}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 5}, + [1000] = {.lex_state = 247}, + [1001] = {.lex_state = 60}, + [1002] = {.lex_state = 8}, + [1003] = {.lex_state = 8}, + [1004] = {.lex_state = 8}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 21}, + [1007] = {.lex_state = 5}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 5}, + [1010] = {.lex_state = 8}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 8}, + [1013] = {.lex_state = 247}, + [1014] = {.lex_state = 58}, + [1015] = {.lex_state = 21}, + [1016] = {.lex_state = 60}, + [1017] = {.lex_state = 247}, + [1018] = {.lex_state = 247}, + [1019] = {.lex_state = 5}, + [1020] = {.lex_state = 4}, + [1021] = {.lex_state = 5}, + [1022] = {.lex_state = 247}, + [1023] = {.lex_state = 8}, + [1024] = {.lex_state = 8}, + [1025] = {.lex_state = 8}, + [1026] = {.lex_state = 8}, + [1027] = {.lex_state = 5}, + [1028] = {.lex_state = 5}, + [1029] = {.lex_state = 8}, + [1030] = {.lex_state = 8}, + [1031] = {.lex_state = 5}, + [1032] = {.lex_state = 59}, + [1033] = {.lex_state = 8}, + [1034] = {.lex_state = 8}, + [1035] = {.lex_state = 247}, + [1036] = {.lex_state = 8}, + [1037] = {.lex_state = 4}, + [1038] = {.lex_state = 247}, + [1039] = {.lex_state = 8}, + [1040] = {.lex_state = 58}, + [1041] = {.lex_state = 247}, + [1042] = {.lex_state = 247}, + [1043] = {.lex_state = 247}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 247}, + [1048] = {.lex_state = 247}, + [1049] = {.lex_state = 58}, + [1050] = {.lex_state = 58}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 247}, + [1053] = {.lex_state = 58}, + [1054] = {.lex_state = 247}, + [1055] = {.lex_state = 60}, + [1056] = {.lex_state = 58}, + [1057] = {.lex_state = 247}, + [1058] = {.lex_state = 5}, + [1059] = {.lex_state = 5}, + [1060] = {.lex_state = 60}, + [1061] = {.lex_state = 59}, + [1062] = {.lex_state = 247}, + [1063] = {.lex_state = 59}, + [1064] = {.lex_state = 59}, + [1065] = {.lex_state = 58}, + [1066] = {.lex_state = 59}, + [1067] = {.lex_state = 59}, + [1068] = {.lex_state = 59}, + [1069] = {.lex_state = 59}, + [1070] = {.lex_state = 59}, + [1071] = {.lex_state = 247}, + [1072] = {.lex_state = 247}, + [1073] = {.lex_state = 247}, + [1074] = {.lex_state = 60}, + [1075] = {.lex_state = 247}, + [1076] = {.lex_state = 58}, + [1077] = {.lex_state = 59}, + [1078] = {.lex_state = 60}, + [1079] = {.lex_state = 59}, + [1080] = {.lex_state = 59}, + [1081] = {.lex_state = 60}, + [1082] = {.lex_state = 58}, + [1083] = {.lex_state = 247}, + [1084] = {.lex_state = 59}, + [1085] = {.lex_state = 59}, + [1086] = {.lex_state = 60}, + [1087] = {.lex_state = 59}, + [1088] = {.lex_state = 58}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 5}, + [1091] = {.lex_state = 247}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 0}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 59}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 59}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 59}, + [1100] = {.lex_state = 59}, + [1101] = {.lex_state = 58}, + [1102] = {.lex_state = 59}, + [1103] = {.lex_state = 5}, + [1104] = {.lex_state = 9}, + [1105] = {.lex_state = 59}, + [1106] = {.lex_state = 247}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 5}, + [1109] = {.lex_state = 247}, + [1110] = {.lex_state = 59}, + [1111] = {.lex_state = 5}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 0}, + [1115] = {.lex_state = 59}, + [1116] = {.lex_state = 59}, + [1117] = {.lex_state = 59}, + [1118] = {.lex_state = 59}, + [1119] = {.lex_state = 59}, + [1120] = {.lex_state = 59}, + [1121] = {.lex_state = 5}, + [1122] = {.lex_state = 59}, + [1123] = {.lex_state = 247}, + [1124] = {.lex_state = 59}, + [1125] = {.lex_state = 59}, + [1126] = {.lex_state = 247}, + [1127] = {.lex_state = 59}, + [1128] = {.lex_state = 60}, + [1129] = {.lex_state = 59}, + [1130] = {.lex_state = 59}, + [1131] = {.lex_state = 59}, + [1132] = {.lex_state = 247}, + [1133] = {.lex_state = 58}, + [1134] = {.lex_state = 59}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 58}, + [1137] = {.lex_state = 0}, + [1138] = {.lex_state = 58}, + [1139] = {.lex_state = 59}, + [1140] = {.lex_state = 59}, + [1141] = {.lex_state = 247}, + [1142] = {.lex_state = 60}, + [1143] = {.lex_state = 9}, + [1144] = {.lex_state = 5}, + [1145] = {.lex_state = 247}, + [1146] = {.lex_state = 14}, + [1147] = {.lex_state = 21}, + [1148] = {.lex_state = 247}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 247}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 247}, + [1157] = {.lex_state = 247}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 247}, + [1163] = {.lex_state = 9}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 9}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 9}, + [1171] = {.lex_state = 9}, + [1172] = {.lex_state = 9}, + [1173] = {.lex_state = 9}, + [1174] = {.lex_state = 247}, + [1175] = {.lex_state = 9}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 9}, + [1178] = {.lex_state = 9}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 14}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 9}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 9}, + [1187] = {.lex_state = 9}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 14}, + [1190] = {.lex_state = 9}, + [1191] = {.lex_state = 22}, + [1192] = {.lex_state = 0}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 9}, + [1195] = {.lex_state = 9}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 9}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 247}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 9}, + [1213] = {.lex_state = 9}, + [1214] = {.lex_state = 247}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 9}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 9}, + [1222] = {.lex_state = 247}, + [1223] = {.lex_state = 9}, + [1224] = {.lex_state = 9}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 247}, + [1228] = {.lex_state = 247}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 60}, + [1231] = {.lex_state = 14}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 9}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 9}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 9}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 9}, + [1246] = {.lex_state = 9}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 9}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 9}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 9}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 247}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 247}, + [1259] = {.lex_state = 247}, + [1260] = {.lex_state = 247}, + [1261] = {.lex_state = 247}, + [1262] = {.lex_state = 247}, + [1263] = {.lex_state = 247}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 9}, + [1266] = {.lex_state = 247}, + [1267] = {.lex_state = 9}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 9}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 9}, + [1272] = {.lex_state = 9}, + [1273] = {.lex_state = 247}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 9}, + [1276] = {.lex_state = 247}, + [1277] = {.lex_state = 5}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 247}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 247}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 5}, + [1295] = {.lex_state = 14}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 247}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 5}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 247}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 247}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 14}, + [1321] = {.lex_state = 5}, + [1322] = {.lex_state = 9}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 5}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 0}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 59}, + [1337] = {.lex_state = 247}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 247}, + [1340] = {.lex_state = 8}, + [1341] = {.lex_state = 247}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 8}, + [1344] = {.lex_state = 247}, + [1345] = {.lex_state = 247}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 58}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 59}, + [1352] = {.lex_state = 247}, + [1353] = {.lex_state = 59}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 58}, + [1361] = {.lex_state = 247}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 247}, + [1364] = {.lex_state = 247}, + [1365] = {.lex_state = 57}, + [1366] = {.lex_state = 247}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 247}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 247}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 8}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 247}, + [1381] = {.lex_state = 247}, + [1382] = {.lex_state = 59}, + [1383] = {.lex_state = 247}, + [1384] = {.lex_state = 247}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 247}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 59}, + [1390] = {.lex_state = 59}, + [1391] = {.lex_state = 59}, + [1392] = {.lex_state = 59}, + [1393] = {.lex_state = 59}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 247}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 247}, + [1404] = {.lex_state = 247}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 247}, + [1407] = {.lex_state = 21}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 59}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 59}, + [1412] = {.lex_state = 59}, + [1413] = {.lex_state = 59}, + [1414] = {.lex_state = 59}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 59}, + [1424] = {.lex_state = 59}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 59}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 59}, + [1430] = {.lex_state = 59}, + [1431] = {.lex_state = 59}, + [1432] = {.lex_state = 58}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 59}, + [1442] = {.lex_state = 59}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 247}, + [1445] = {.lex_state = 247}, + [1446] = {.lex_state = 59}, + [1447] = {.lex_state = 59}, + [1448] = {.lex_state = 59}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 21}, + [1451] = {.lex_state = 59}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 247}, + [1456] = {.lex_state = 59}, + [1457] = {.lex_state = 59}, + [1458] = {.lex_state = 59}, + [1459] = {.lex_state = 247}, + [1460] = {.lex_state = 59}, + [1461] = {.lex_state = 59}, + [1462] = {.lex_state = 247}, + [1463] = {.lex_state = 247}, + [1464] = {.lex_state = 247}, + [1465] = {.lex_state = 247}, + [1466] = {.lex_state = 59}, + [1467] = {.lex_state = 247}, + [1468] = {.lex_state = 8}, + [1469] = {.lex_state = 59}, + [1470] = {.lex_state = 57}, + [1471] = {.lex_state = 57}, + [1472] = {.lex_state = 0}, + [1473] = {.lex_state = 10}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 14}, + [1482] = {.lex_state = 57}, + [1483] = {.lex_state = 57}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 57}, + [1486] = {.lex_state = 57}, + [1487] = {.lex_state = 57}, + [1488] = {.lex_state = 57}, + [1489] = {.lex_state = 10}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 57}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 57}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 10}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 57}, + [1509] = {.lex_state = 57}, + [1510] = {.lex_state = 57}, + [1511] = {.lex_state = 57}, + [1512] = {.lex_state = 57}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 57}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 4}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 404}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 0}, + [1525] = {.lex_state = 57}, + [1526] = {.lex_state = 10}, + [1527] = {.lex_state = 57}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 10}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 57}, + [1538] = {.lex_state = 57}, + [1539] = {.lex_state = 57}, + [1540] = {.lex_state = 57}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 57}, + [1543] = {.lex_state = 57}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 57}, + [1552] = {.lex_state = 4}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 57}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 57}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 14}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 14}, + [1570] = {.lex_state = 247}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 14}, + [1578] = {.lex_state = 14}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 14}, + [1582] = {.lex_state = 57}, + [1583] = {.lex_state = 0}, + [1584] = {.lex_state = 0}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 404}, + [1587] = {.lex_state = 404}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 57}, + [1590] = {.lex_state = 57}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, + [1597] = {.lex_state = 57}, + [1598] = {.lex_state = 57}, + [1599] = {.lex_state = 404}, + [1600] = {.lex_state = 57}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 14}, + [1604] = {.lex_state = 404}, + [1605] = {.lex_state = 57}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 57}, + [1610] = {.lex_state = 57}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 57}, + [1613] = {.lex_state = 14}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 57}, + [1617] = {.lex_state = 14}, + [1618] = {.lex_state = 57}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 14}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 247}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 0}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 57}, + [1629] = {.lex_state = 57}, + [1630] = {.lex_state = 57}, + [1631] = {.lex_state = 57}, + [1632] = {.lex_state = 57}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_impl] = ACTIONS(1), + [anon_sym_of] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_trait] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_mod] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_u8] = ACTIONS(1), + [anon_sym_i8] = ACTIONS(1), + [anon_sym_u16] = ACTIONS(1), + [anon_sym_i16] = ACTIONS(1), + [anon_sym_u32] = ACTIONS(1), + [anon_sym_i32] = ACTIONS(1), + [anon_sym_u64] = ACTIONS(1), + [anon_sym_i64] = ACTIONS(1), + [anon_sym_u128] = ACTIONS(1), + [anon_sym_i128] = ACTIONS(1), + [anon_sym_usize] = ACTIONS(1), + [anon_sym_bool] = ACTIONS(1), + [anon_sym_ByteArray] = ACTIONS(1), + [anon_sym_felt252] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym_nopanic] = ACTIONS(1), + [anon_sym_loop] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_pub] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [sym_numeric_literal] = ACTIONS(1), + [aux_sym_string_literal_token1] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_shortstring_literal] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_LT2] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_ref] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [sym_mutable_specifier] = ACTIONS(1), + [sym_super] = ACTIONS(1), + [sym_crate] = ACTIONS(1), + [sym_line_comment] = ACTIONS(3), + }, + [1] = { + [sym_source_file] = STATE(1584), + [sym__statement] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_const_item] = STATE(2), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(2), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [2] = { + [sym__statement] = STATE(13), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_const_item] = STATE(13), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(13), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [3] = { + [sym__statement] = STATE(19), + [sym_impl_item] = STATE(19), + [sym_trait_item] = STATE(19), + [sym_associated_type] = STATE(19), + [sym_const_item] = STATE(19), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(19), + [sym_attribute_item] = STATE(19), + [sym_inner_attribute_item] = STATE(19), + [sym_mod_item] = STATE(19), + [sym_struct_item] = STATE(19), + [sym_enum_item] = STATE(19), + [sym_type_item] = STATE(19), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(654), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(19), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [4] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(682), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(83), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(626), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [6] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(657), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(87), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [7] = { + [sym__statement] = STATE(17), + [sym_impl_item] = STATE(17), + [sym_trait_item] = STATE(17), + [sym_associated_type] = STATE(17), + [sym_const_item] = STATE(17), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(17), + [sym_attribute_item] = STATE(17), + [sym_inner_attribute_item] = STATE(17), + [sym_mod_item] = STATE(17), + [sym_struct_item] = STATE(17), + [sym_enum_item] = STATE(17), + [sym_type_item] = STATE(17), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(17), + [sym_function_item] = STATE(17), + [sym_function_signature_item] = STATE(17), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(17), + [sym_use_declaration] = STATE(17), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(17), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(17), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(89), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [8] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(690), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(4), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [9] = { + [sym__statement] = STATE(5), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_const_item] = STATE(5), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(5), + [sym_expression] = STATE(632), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [10] = { + [sym__statement] = STATE(14), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_const_item] = STATE(14), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(14), + [sym_expression] = STATE(600), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(14), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [11] = { + [sym__statement] = STATE(6), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_const_item] = STATE(6), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(6), + [sym_expression] = STATE(659), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(6), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [12] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(643), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(13), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_const_item] = STATE(13), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(13), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_impl] = ACTIONS(106), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_const] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_struct] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(136), + [anon_sym_fn] = ACTIONS(139), + [anon_sym_let] = ACTIONS(142), + [anon_sym_use] = ACTIONS(145), + [anon_sym_COLON_COLON] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_ByteArray] = ACTIONS(154), + [anon_sym_felt252] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_if] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_pub] = ACTIONS(181), + [anon_sym_return] = ACTIONS(184), + [anon_sym_while] = ACTIONS(187), + [sym_numeric_literal] = ACTIONS(190), + [aux_sym_string_literal_token1] = ACTIONS(193), + [sym_shortstring_literal] = ACTIONS(196), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_ref] = ACTIONS(202), + [sym_identifier] = ACTIONS(205), + [sym_super] = ACTIONS(208), + [sym_line_comment] = ACTIONS(3), + }, + [14] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(647), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [15] = { + [sym__statement] = STATE(18), + [sym_impl_item] = STATE(18), + [sym_trait_item] = STATE(18), + [sym_associated_type] = STATE(18), + [sym_const_item] = STATE(18), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(18), + [sym_attribute_item] = STATE(18), + [sym_inner_attribute_item] = STATE(18), + [sym_mod_item] = STATE(18), + [sym_struct_item] = STATE(18), + [sym_enum_item] = STATE(18), + [sym_type_item] = STATE(18), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(18), + [sym_function_item] = STATE(18), + [sym_function_signature_item] = STATE(18), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(18), + [sym_use_declaration] = STATE(18), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(18), + [sym_expression] = STATE(678), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(18), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [16] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(644), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(12), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [17] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(637), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(217), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [18] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(641), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(219), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [19] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(88), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(653), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [20] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(94), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(291), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1248), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(89), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(89), + [sym_if_expression] = STATE(89), + [sym_match_expression] = STATE(89), + [sym_while_expression] = STATE(89), + [sym_loop_expression] = STATE(89), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(101), + [anon_sym_impl] = ACTIONS(106), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_const] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_struct] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(136), + [anon_sym_fn] = ACTIONS(139), + [anon_sym_let] = ACTIONS(142), + [anon_sym_use] = ACTIONS(145), + [anon_sym_COLON_COLON] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_ByteArray] = ACTIONS(154), + [anon_sym_felt252] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_if] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_pub] = ACTIONS(181), + [anon_sym_return] = ACTIONS(184), + [anon_sym_while] = ACTIONS(187), + [sym_numeric_literal] = ACTIONS(190), + [aux_sym_string_literal_token1] = ACTIONS(193), + [sym_shortstring_literal] = ACTIONS(196), + [anon_sym_true] = ACTIONS(199), + [anon_sym_false] = ACTIONS(199), + [anon_sym_ref] = ACTIONS(202), + [sym_identifier] = ACTIONS(205), + [sym_super] = ACTIONS(208), + [sym_line_comment] = ACTIONS(3), + }, + [21] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(477), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(223), + [anon_sym_DASH_EQ] = ACTIONS(223), + [anon_sym_STAR_EQ] = ACTIONS(223), + [anon_sym_SLASH_EQ] = ACTIONS(223), + [anon_sym_PERCENT_EQ] = ACTIONS(223), + [anon_sym_EQ_EQ] = ACTIONS(223), + [anon_sym_BANG_EQ] = ACTIONS(223), + [anon_sym_GT_EQ] = ACTIONS(223), + [anon_sym_LT_EQ] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [22] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(234), + [anon_sym_impl] = ACTIONS(236), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_trait] = ACTIONS(236), + [anon_sym_type] = ACTIONS(236), + [anon_sym_const] = ACTIONS(236), + [anon_sym_COLON] = ACTIONS(242), + [anon_sym_EQ] = ACTIONS(242), + [anon_sym_BANG] = ACTIONS(242), + [anon_sym_POUND] = ACTIONS(239), + [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_RBRACK] = ACTIONS(234), + [anon_sym_mod] = ACTIONS(236), + [anon_sym_struct] = ACTIONS(236), + [anon_sym_enum] = ACTIONS(236), + [anon_sym_COMMA] = ACTIONS(239), + [anon_sym_fn] = ACTIONS(236), + [anon_sym_DASH_GT] = ACTIONS(239), + [anon_sym_let] = ACTIONS(236), + [anon_sym_use] = ACTIONS(236), + [anon_sym_COLON_COLON] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(242), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym__] = ACTIONS(242), + [anon_sym_RPAREN] = ACTIONS(234), + [anon_sym_u8] = ACTIONS(251), + [anon_sym_i8] = ACTIONS(251), + [anon_sym_u16] = ACTIONS(251), + [anon_sym_i16] = ACTIONS(251), + [anon_sym_u32] = ACTIONS(251), + [anon_sym_i32] = ACTIONS(251), + [anon_sym_u64] = ACTIONS(251), + [anon_sym_i64] = ACTIONS(251), + [anon_sym_u128] = ACTIONS(251), + [anon_sym_i128] = ACTIONS(251), + [anon_sym_usize] = ACTIONS(251), + [anon_sym_bool] = ACTIONS(251), + [anon_sym_ByteArray] = ACTIONS(251), + [anon_sym_felt252] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(242), + [anon_sym_GT] = ACTIONS(242), + [anon_sym_PLUS] = ACTIONS(242), + [anon_sym_DASH] = ACTIONS(254), + [anon_sym_SLASH] = ACTIONS(242), + [anon_sym_PERCENT] = ACTIONS(242), + [anon_sym_CARET] = ACTIONS(242), + [anon_sym_TILDE] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(242), + [anon_sym_PIPE] = ACTIONS(242), + [anon_sym_AMP_AMP] = ACTIONS(239), + [anon_sym_PIPE_PIPE] = ACTIONS(239), + [anon_sym_LT_LT] = ACTIONS(239), + [anon_sym_GT_GT] = ACTIONS(239), + [anon_sym_PLUS_EQ] = ACTIONS(239), + [anon_sym_DASH_EQ] = ACTIONS(239), + [anon_sym_STAR_EQ] = ACTIONS(239), + [anon_sym_SLASH_EQ] = ACTIONS(239), + [anon_sym_PERCENT_EQ] = ACTIONS(239), + [anon_sym_CARET_EQ] = ACTIONS(239), + [anon_sym_AMP_EQ] = ACTIONS(239), + [anon_sym_PIPE_EQ] = ACTIONS(239), + [anon_sym_EQ_EQ] = ACTIONS(239), + [anon_sym_BANG_EQ] = ACTIONS(239), + [anon_sym_GT_EQ] = ACTIONS(239), + [anon_sym_LT_EQ] = ACTIONS(239), + [anon_sym_AT] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(242), + [anon_sym_EQ_GT] = ACTIONS(239), + [anon_sym_QMARK] = ACTIONS(239), + [anon_sym_break] = ACTIONS(236), + [anon_sym_continue] = ACTIONS(236), + [anon_sym_default] = ACTIONS(236), + [anon_sym_if] = ACTIONS(236), + [anon_sym_extern] = ACTIONS(236), + [anon_sym_nopanic] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(236), + [anon_sym_match] = ACTIONS(236), + [anon_sym_pub] = ACTIONS(236), + [anon_sym_return] = ACTIONS(236), + [anon_sym_static] = ACTIONS(236), + [anon_sym_while] = ACTIONS(236), + [sym_numeric_literal] = ACTIONS(257), + [aux_sym_string_literal_token1] = ACTIONS(260), + [sym_shortstring_literal] = ACTIONS(263), + [anon_sym_true] = ACTIONS(266), + [anon_sym_false] = ACTIONS(266), + [anon_sym_DOLLAR] = ACTIONS(269), + [sym_identifier] = ACTIONS(236), + [sym_mutable_specifier] = ACTIONS(236), + [sym_super] = ACTIONS(236), + [sym_line_comment] = ACTIONS(3), + }, + [23] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(461), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_SEMI] = ACTIONS(272), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(276), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP_AMP] = ACTIONS(272), + [anon_sym_PIPE_PIPE] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_PLUS_EQ] = ACTIONS(272), + [anon_sym_DASH_EQ] = ACTIONS(272), + [anon_sym_STAR_EQ] = ACTIONS(272), + [anon_sym_SLASH_EQ] = ACTIONS(272), + [anon_sym_PERCENT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(272), + [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [24] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(280), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [25] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [26] = { + [sym_delim_token_tree] = STATE(51), + [sym__delim_tokens] = STATE(51), + [sym__literal] = STATE(51), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(51), + [aux_sym_delim_token_tree_repeat1] = STATE(51), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(308), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(308), + [anon_sym_type] = ACTIONS(308), + [anon_sym_const] = ACTIONS(308), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(310), + [anon_sym_mod] = ACTIONS(308), + [anon_sym_struct] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(308), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(308), + [anon_sym_use] = ACTIONS(308), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_default] = ACTIONS(308), + [anon_sym_if] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_nopanic] = ACTIONS(308), + [anon_sym_loop] = ACTIONS(308), + [anon_sym_match] = ACTIONS(308), + [anon_sym_pub] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym_identifier] = ACTIONS(308), + [sym_mutable_specifier] = ACTIONS(308), + [sym_super] = ACTIONS(308), + [sym_line_comment] = ACTIONS(3), + }, + [27] = { + [sym_delim_token_tree] = STATE(37), + [sym__delim_tokens] = STATE(37), + [sym__literal] = STATE(37), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(37), + [aux_sym_delim_token_tree_repeat1] = STATE(37), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(314), + [anon_sym_type] = ACTIONS(314), + [anon_sym_const] = ACTIONS(314), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(314), + [anon_sym_struct] = ACTIONS(314), + [anon_sym_enum] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(314), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(314), + [anon_sym_use] = ACTIONS(314), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(314), + [anon_sym_default] = ACTIONS(314), + [anon_sym_if] = ACTIONS(314), + [anon_sym_extern] = ACTIONS(314), + [anon_sym_nopanic] = ACTIONS(314), + [anon_sym_loop] = ACTIONS(314), + [anon_sym_match] = ACTIONS(314), + [anon_sym_pub] = ACTIONS(314), + [anon_sym_return] = ACTIONS(314), + [anon_sym_static] = ACTIONS(314), + [anon_sym_while] = ACTIONS(314), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(318), + [sym_identifier] = ACTIONS(314), + [sym_mutable_specifier] = ACTIONS(314), + [sym_super] = ACTIONS(314), + [sym_line_comment] = ACTIONS(3), + }, + [28] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(280), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [29] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [30] = { + [sym_delim_token_tree] = STATE(53), + [sym__delim_tokens] = STATE(53), + [sym__literal] = STATE(53), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(53), + [aux_sym_delim_token_tree_repeat1] = STATE(53), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(320), + [anon_sym_type] = ACTIONS(320), + [anon_sym_const] = ACTIONS(320), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(320), + [anon_sym_struct] = ACTIONS(320), + [anon_sym_enum] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(320), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(320), + [anon_sym_use] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(320), + [anon_sym_continue] = ACTIONS(320), + [anon_sym_default] = ACTIONS(320), + [anon_sym_if] = ACTIONS(320), + [anon_sym_extern] = ACTIONS(320), + [anon_sym_nopanic] = ACTIONS(320), + [anon_sym_loop] = ACTIONS(320), + [anon_sym_match] = ACTIONS(320), + [anon_sym_pub] = ACTIONS(320), + [anon_sym_return] = ACTIONS(320), + [anon_sym_static] = ACTIONS(320), + [anon_sym_while] = ACTIONS(320), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(324), + [sym_identifier] = ACTIONS(320), + [sym_mutable_specifier] = ACTIONS(320), + [sym_super] = ACTIONS(320), + [sym_line_comment] = ACTIONS(3), + }, + [31] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(326), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [32] = { + [sym_delim_token_tree] = STATE(28), + [sym__delim_tokens] = STATE(28), + [sym__literal] = STATE(28), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(28), + [aux_sym_delim_token_tree_repeat1] = STATE(28), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(328), + [anon_sym_type] = ACTIONS(328), + [anon_sym_const] = ACTIONS(328), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(328), + [anon_sym_struct] = ACTIONS(328), + [anon_sym_enum] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(328), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(328), + [anon_sym_use] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(328), + [anon_sym_continue] = ACTIONS(328), + [anon_sym_default] = ACTIONS(328), + [anon_sym_if] = ACTIONS(328), + [anon_sym_extern] = ACTIONS(328), + [anon_sym_nopanic] = ACTIONS(328), + [anon_sym_loop] = ACTIONS(328), + [anon_sym_match] = ACTIONS(328), + [anon_sym_pub] = ACTIONS(328), + [anon_sym_return] = ACTIONS(328), + [anon_sym_static] = ACTIONS(328), + [anon_sym_while] = ACTIONS(328), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(332), + [sym_identifier] = ACTIONS(328), + [sym_mutable_specifier] = ACTIONS(328), + [sym_super] = ACTIONS(328), + [sym_line_comment] = ACTIONS(3), + }, + [33] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(326), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [34] = { + [sym_delim_token_tree] = STATE(52), + [sym__delim_tokens] = STATE(52), + [sym__literal] = STATE(52), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(52), + [aux_sym_delim_token_tree_repeat1] = STATE(52), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_impl] = ACTIONS(334), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(334), + [anon_sym_type] = ACTIONS(334), + [anon_sym_const] = ACTIONS(334), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(334), + [anon_sym_struct] = ACTIONS(334), + [anon_sym_enum] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(334), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(334), + [anon_sym_use] = ACTIONS(334), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(334), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_default] = ACTIONS(334), + [anon_sym_if] = ACTIONS(334), + [anon_sym_extern] = ACTIONS(334), + [anon_sym_nopanic] = ACTIONS(334), + [anon_sym_loop] = ACTIONS(334), + [anon_sym_match] = ACTIONS(334), + [anon_sym_pub] = ACTIONS(334), + [anon_sym_return] = ACTIONS(334), + [anon_sym_static] = ACTIONS(334), + [anon_sym_while] = ACTIONS(334), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(336), + [sym_identifier] = ACTIONS(334), + [sym_mutable_specifier] = ACTIONS(334), + [sym_super] = ACTIONS(334), + [sym_line_comment] = ACTIONS(3), + }, + [35] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [36] = { + [sym_delim_token_tree] = STATE(29), + [sym__delim_tokens] = STATE(29), + [sym__literal] = STATE(29), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(29), + [aux_sym_delim_token_tree_repeat1] = STATE(29), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(338), + [anon_sym_type] = ACTIONS(338), + [anon_sym_const] = ACTIONS(338), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_mod] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(338), + [anon_sym_enum] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(338), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(338), + [anon_sym_use] = ACTIONS(338), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_default] = ACTIONS(338), + [anon_sym_if] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(338), + [anon_sym_nopanic] = ACTIONS(338), + [anon_sym_loop] = ACTIONS(338), + [anon_sym_match] = ACTIONS(338), + [anon_sym_pub] = ACTIONS(338), + [anon_sym_return] = ACTIONS(338), + [anon_sym_static] = ACTIONS(338), + [anon_sym_while] = ACTIONS(338), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_identifier] = ACTIONS(338), + [sym_mutable_specifier] = ACTIONS(338), + [sym_super] = ACTIONS(338), + [sym_line_comment] = ACTIONS(3), + }, + [37] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(306), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [38] = { + [sym_delim_token_tree] = STATE(31), + [sym__delim_tokens] = STATE(31), + [sym__literal] = STATE(31), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(31), + [aux_sym_delim_token_tree_repeat1] = STATE(31), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(342), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(342), + [anon_sym_type] = ACTIONS(342), + [anon_sym_const] = ACTIONS(342), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(342), + [anon_sym_struct] = ACTIONS(342), + [anon_sym_enum] = ACTIONS(342), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(342), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(342), + [anon_sym_use] = ACTIONS(342), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(344), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(342), + [anon_sym_continue] = ACTIONS(342), + [anon_sym_default] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_extern] = ACTIONS(342), + [anon_sym_nopanic] = ACTIONS(342), + [anon_sym_loop] = ACTIONS(342), + [anon_sym_match] = ACTIONS(342), + [anon_sym_pub] = ACTIONS(342), + [anon_sym_return] = ACTIONS(342), + [anon_sym_static] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(346), + [sym_identifier] = ACTIONS(342), + [sym_mutable_specifier] = ACTIONS(342), + [sym_super] = ACTIONS(342), + [sym_line_comment] = ACTIONS(3), + }, + [39] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(306), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [40] = { + [sym_delim_token_tree] = STATE(50), + [sym__delim_tokens] = STATE(50), + [sym__literal] = STATE(50), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(50), + [aux_sym_delim_token_tree_repeat1] = STATE(50), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(348), + [anon_sym_type] = ACTIONS(348), + [anon_sym_const] = ACTIONS(348), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(348), + [anon_sym_struct] = ACTIONS(348), + [anon_sym_enum] = ACTIONS(348), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(348), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(348), + [anon_sym_use] = ACTIONS(348), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_default] = ACTIONS(348), + [anon_sym_if] = ACTIONS(348), + [anon_sym_extern] = ACTIONS(348), + [anon_sym_nopanic] = ACTIONS(348), + [anon_sym_loop] = ACTIONS(348), + [anon_sym_match] = ACTIONS(348), + [anon_sym_pub] = ACTIONS(348), + [anon_sym_return] = ACTIONS(348), + [anon_sym_static] = ACTIONS(348), + [anon_sym_while] = ACTIONS(348), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(350), + [sym_identifier] = ACTIONS(348), + [sym_mutable_specifier] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_line_comment] = ACTIONS(3), + }, + [41] = { + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(352), + [anon_sym_type] = ACTIONS(352), + [anon_sym_const] = ACTIONS(352), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_mod] = ACTIONS(352), + [anon_sym_struct] = ACTIONS(352), + [anon_sym_enum] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(352), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(352), + [anon_sym_use] = ACTIONS(352), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(352), + [anon_sym_continue] = ACTIONS(352), + [anon_sym_default] = ACTIONS(352), + [anon_sym_if] = ACTIONS(352), + [anon_sym_extern] = ACTIONS(352), + [anon_sym_nopanic] = ACTIONS(352), + [anon_sym_loop] = ACTIONS(352), + [anon_sym_match] = ACTIONS(352), + [anon_sym_pub] = ACTIONS(352), + [anon_sym_return] = ACTIONS(352), + [anon_sym_static] = ACTIONS(352), + [anon_sym_while] = ACTIONS(352), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(354), + [sym_identifier] = ACTIONS(352), + [sym_mutable_specifier] = ACTIONS(352), + [sym_super] = ACTIONS(352), + [sym_line_comment] = ACTIONS(3), + }, + [42] = { + [sym_delim_token_tree] = STATE(33), + [sym__delim_tokens] = STATE(33), + [sym__literal] = STATE(33), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(33), + [aux_sym_delim_token_tree_repeat1] = STATE(33), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(356), + [anon_sym_type] = ACTIONS(356), + [anon_sym_const] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(344), + [anon_sym_mod] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(356), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(356), + [anon_sym_use] = ACTIONS(356), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(356), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_default] = ACTIONS(356), + [anon_sym_if] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(356), + [anon_sym_nopanic] = ACTIONS(356), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(356), + [anon_sym_pub] = ACTIONS(356), + [anon_sym_return] = ACTIONS(356), + [anon_sym_static] = ACTIONS(356), + [anon_sym_while] = ACTIONS(356), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(358), + [sym_identifier] = ACTIONS(356), + [sym_mutable_specifier] = ACTIONS(356), + [sym_super] = ACTIONS(356), + [sym_line_comment] = ACTIONS(3), + }, + [43] = { + [sym_delim_token_tree] = STATE(35), + [sym__delim_tokens] = STATE(35), + [sym__literal] = STATE(35), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(35), + [aux_sym_delim_token_tree_repeat1] = STATE(35), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(344), + [anon_sym_impl] = ACTIONS(360), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(360), + [anon_sym_type] = ACTIONS(360), + [anon_sym_const] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(360), + [anon_sym_enum] = ACTIONS(360), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(360), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(360), + [anon_sym_use] = ACTIONS(360), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(360), + [anon_sym_default] = ACTIONS(360), + [anon_sym_if] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(360), + [anon_sym_nopanic] = ACTIONS(360), + [anon_sym_loop] = ACTIONS(360), + [anon_sym_match] = ACTIONS(360), + [anon_sym_pub] = ACTIONS(360), + [anon_sym_return] = ACTIONS(360), + [anon_sym_static] = ACTIONS(360), + [anon_sym_while] = ACTIONS(360), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(362), + [sym_identifier] = ACTIONS(360), + [sym_mutable_specifier] = ACTIONS(360), + [sym_super] = ACTIONS(360), + [sym_line_comment] = ACTIONS(3), + }, + [44] = { + [sym_delim_token_tree] = STATE(24), + [sym__delim_tokens] = STATE(24), + [sym__literal] = STATE(24), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(24), + [aux_sym_delim_token_tree_repeat1] = STATE(24), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_impl] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(364), + [anon_sym_type] = ACTIONS(364), + [anon_sym_const] = ACTIONS(364), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(364), + [anon_sym_struct] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(364), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(364), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(364), + [anon_sym_use] = ACTIONS(364), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(364), + [anon_sym_continue] = ACTIONS(364), + [anon_sym_default] = ACTIONS(364), + [anon_sym_if] = ACTIONS(364), + [anon_sym_extern] = ACTIONS(364), + [anon_sym_nopanic] = ACTIONS(364), + [anon_sym_loop] = ACTIONS(364), + [anon_sym_match] = ACTIONS(364), + [anon_sym_pub] = ACTIONS(364), + [anon_sym_return] = ACTIONS(364), + [anon_sym_static] = ACTIONS(364), + [anon_sym_while] = ACTIONS(364), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_identifier] = ACTIONS(364), + [sym_mutable_specifier] = ACTIONS(364), + [sym_super] = ACTIONS(364), + [sym_line_comment] = ACTIONS(3), + }, + [45] = { + [sym_delim_token_tree] = STATE(49), + [sym__delim_tokens] = STATE(49), + [sym__literal] = STATE(49), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(49), + [aux_sym_delim_token_tree_repeat1] = STATE(49), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(368), + [anon_sym_type] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(322), + [anon_sym_mod] = ACTIONS(368), + [anon_sym_struct] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(368), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(368), + [anon_sym_use] = ACTIONS(368), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(368), + [anon_sym_continue] = ACTIONS(368), + [anon_sym_default] = ACTIONS(368), + [anon_sym_if] = ACTIONS(368), + [anon_sym_extern] = ACTIONS(368), + [anon_sym_nopanic] = ACTIONS(368), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(368), + [anon_sym_pub] = ACTIONS(368), + [anon_sym_return] = ACTIONS(368), + [anon_sym_static] = ACTIONS(368), + [anon_sym_while] = ACTIONS(368), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(370), + [sym_identifier] = ACTIONS(368), + [sym_mutable_specifier] = ACTIONS(368), + [sym_super] = ACTIONS(368), + [sym_line_comment] = ACTIONS(3), + }, + [46] = { + [sym_delim_token_tree] = STATE(48), + [sym__delim_tokens] = STATE(48), + [sym__literal] = STATE(48), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(48), + [aux_sym_delim_token_tree_repeat1] = STATE(48), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_impl] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(372), + [anon_sym_type] = ACTIONS(372), + [anon_sym_const] = ACTIONS(372), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(372), + [anon_sym_struct] = ACTIONS(372), + [anon_sym_enum] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(372), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(372), + [anon_sym_use] = ACTIONS(372), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(372), + [anon_sym_continue] = ACTIONS(372), + [anon_sym_default] = ACTIONS(372), + [anon_sym_if] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(372), + [anon_sym_nopanic] = ACTIONS(372), + [anon_sym_loop] = ACTIONS(372), + [anon_sym_match] = ACTIONS(372), + [anon_sym_pub] = ACTIONS(372), + [anon_sym_return] = ACTIONS(372), + [anon_sym_static] = ACTIONS(372), + [anon_sym_while] = ACTIONS(372), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(374), + [sym_identifier] = ACTIONS(372), + [sym_mutable_specifier] = ACTIONS(372), + [sym_super] = ACTIONS(372), + [sym_line_comment] = ACTIONS(3), + }, + [47] = { + [sym_delim_token_tree] = STATE(25), + [sym__delim_tokens] = STATE(25), + [sym__literal] = STATE(25), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(25), + [aux_sym_delim_token_tree_repeat1] = STATE(25), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_impl] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(376), + [anon_sym_type] = ACTIONS(376), + [anon_sym_const] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(376), + [anon_sym_struct] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(376), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(376), + [anon_sym_use] = ACTIONS(376), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(376), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_default] = ACTIONS(376), + [anon_sym_if] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(376), + [anon_sym_nopanic] = ACTIONS(376), + [anon_sym_loop] = ACTIONS(376), + [anon_sym_match] = ACTIONS(376), + [anon_sym_pub] = ACTIONS(376), + [anon_sym_return] = ACTIONS(376), + [anon_sym_static] = ACTIONS(376), + [anon_sym_while] = ACTIONS(376), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(378), + [sym_identifier] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(376), + [sym_super] = ACTIONS(376), + [sym_line_comment] = ACTIONS(3), + }, + [48] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [49] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(380), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [50] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [51] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_RBRACK] = ACTIONS(382), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [52] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(382), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [53] = { + [sym_delim_token_tree] = STATE(22), + [sym__delim_tokens] = STATE(22), + [sym__literal] = STATE(22), + [sym_negative_literal] = STATE(63), + [sym_string_literal] = STATE(63), + [sym_boolean_literal] = STATE(63), + [sym__non_delim_token] = STATE(22), + [aux_sym_delim_token_tree_repeat1] = STATE(22), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_trait] = ACTIONS(282), + [anon_sym_type] = ACTIONS(282), + [anon_sym_const] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_POUND] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_mod] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(282), + [anon_sym_enum] = ACTIONS(282), + [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_fn] = ACTIONS(282), + [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_let] = ACTIONS(282), + [anon_sym_use] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(284), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(290), + [anon_sym__] = ACTIONS(286), + [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_PERCENT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_AMP_AMP] = ACTIONS(284), + [anon_sym_PIPE_PIPE] = ACTIONS(284), + [anon_sym_LT_LT] = ACTIONS(284), + [anon_sym_GT_GT] = ACTIONS(284), + [anon_sym_PLUS_EQ] = ACTIONS(284), + [anon_sym_DASH_EQ] = ACTIONS(284), + [anon_sym_STAR_EQ] = ACTIONS(284), + [anon_sym_SLASH_EQ] = ACTIONS(284), + [anon_sym_PERCENT_EQ] = ACTIONS(284), + [anon_sym_CARET_EQ] = ACTIONS(284), + [anon_sym_AMP_EQ] = ACTIONS(284), + [anon_sym_PIPE_EQ] = ACTIONS(284), + [anon_sym_EQ_EQ] = ACTIONS(284), + [anon_sym_BANG_EQ] = ACTIONS(284), + [anon_sym_GT_EQ] = ACTIONS(284), + [anon_sym_LT_EQ] = ACTIONS(284), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_DOT_DOT] = ACTIONS(284), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_break] = ACTIONS(282), + [anon_sym_continue] = ACTIONS(282), + [anon_sym_default] = ACTIONS(282), + [anon_sym_if] = ACTIONS(282), + [anon_sym_extern] = ACTIONS(282), + [anon_sym_nopanic] = ACTIONS(282), + [anon_sym_loop] = ACTIONS(282), + [anon_sym_match] = ACTIONS(282), + [anon_sym_pub] = ACTIONS(282), + [anon_sym_return] = ACTIONS(282), + [anon_sym_static] = ACTIONS(282), + [anon_sym_while] = ACTIONS(282), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(282), + [sym_mutable_specifier] = ACTIONS(282), + [sym_super] = ACTIONS(282), + [sym_line_comment] = ACTIONS(3), + }, + [54] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(738), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(223), + [anon_sym_DASH_EQ] = ACTIONS(223), + [anon_sym_STAR_EQ] = ACTIONS(223), + [anon_sym_SLASH_EQ] = ACTIONS(223), + [anon_sym_PERCENT_EQ] = ACTIONS(223), + [anon_sym_EQ_EQ] = ACTIONS(223), + [anon_sym_BANG_EQ] = ACTIONS(223), + [anon_sym_GT_EQ] = ACTIONS(223), + [anon_sym_LT_EQ] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(223), + [anon_sym_EQ_GT] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [55] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(745), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP_AMP] = ACTIONS(272), + [anon_sym_PIPE_PIPE] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_PLUS_EQ] = ACTIONS(272), + [anon_sym_DASH_EQ] = ACTIONS(272), + [anon_sym_STAR_EQ] = ACTIONS(272), + [anon_sym_SLASH_EQ] = ACTIONS(272), + [anon_sym_PERCENT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(272), + [anon_sym_EQ_GT] = ACTIONS(272), + [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [56] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(719), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(223), + [anon_sym_DASH_EQ] = ACTIONS(223), + [anon_sym_STAR_EQ] = ACTIONS(223), + [anon_sym_SLASH_EQ] = ACTIONS(223), + [anon_sym_PERCENT_EQ] = ACTIONS(223), + [anon_sym_EQ_EQ] = ACTIONS(223), + [anon_sym_BANG_EQ] = ACTIONS(223), + [anon_sym_GT_EQ] = ACTIONS(223), + [anon_sym_LT_EQ] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [57] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(274), + [anon_sym_PERCENT] = ACTIONS(274), + [anon_sym_CARET] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(274), + [anon_sym_AMP_AMP] = ACTIONS(272), + [anon_sym_PIPE_PIPE] = ACTIONS(272), + [anon_sym_LT_LT] = ACTIONS(272), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_PLUS_EQ] = ACTIONS(272), + [anon_sym_DASH_EQ] = ACTIONS(272), + [anon_sym_STAR_EQ] = ACTIONS(272), + [anon_sym_SLASH_EQ] = ACTIONS(272), + [anon_sym_PERCENT_EQ] = ACTIONS(272), + [anon_sym_EQ_EQ] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(272), + [anon_sym_GT_EQ] = ACTIONS(272), + [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(272), + [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [58] = { + [aux_sym__non_special_token_repeat1] = STATE(58), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_impl] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(454), + [anon_sym_type] = ACTIONS(454), + [anon_sym_const] = ACTIONS(454), + [anon_sym_COLON] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_POUND] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_RBRACK] = ACTIONS(452), + [anon_sym_mod] = ACTIONS(454), + [anon_sym_struct] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(456), + [anon_sym_fn] = ACTIONS(454), + [anon_sym_DASH_GT] = ACTIONS(456), + [anon_sym_let] = ACTIONS(454), + [anon_sym_use] = ACTIONS(454), + [anon_sym_COLON_COLON] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym__] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(452), + [anon_sym_u8] = ACTIONS(454), + [anon_sym_i8] = ACTIONS(454), + [anon_sym_u16] = ACTIONS(454), + [anon_sym_i16] = ACTIONS(454), + [anon_sym_u32] = ACTIONS(454), + [anon_sym_i32] = ACTIONS(454), + [anon_sym_u64] = ACTIONS(454), + [anon_sym_i64] = ACTIONS(454), + [anon_sym_u128] = ACTIONS(454), + [anon_sym_i128] = ACTIONS(454), + [anon_sym_usize] = ACTIONS(454), + [anon_sym_bool] = ACTIONS(454), + [anon_sym_ByteArray] = ACTIONS(454), + [anon_sym_felt252] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(459), + [anon_sym_PERCENT] = ACTIONS(459), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(456), + [anon_sym_PIPE_PIPE] = ACTIONS(456), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(456), + [anon_sym_PLUS_EQ] = ACTIONS(456), + [anon_sym_DASH_EQ] = ACTIONS(456), + [anon_sym_STAR_EQ] = ACTIONS(456), + [anon_sym_SLASH_EQ] = ACTIONS(456), + [anon_sym_PERCENT_EQ] = ACTIONS(456), + [anon_sym_CARET_EQ] = ACTIONS(456), + [anon_sym_AMP_EQ] = ACTIONS(456), + [anon_sym_PIPE_EQ] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(456), + [anon_sym_BANG_EQ] = ACTIONS(456), + [anon_sym_GT_EQ] = ACTIONS(456), + [anon_sym_LT_EQ] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(456), + [anon_sym_DOT_DOT] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(459), + [anon_sym_EQ_GT] = ACTIONS(456), + [anon_sym_QMARK] = ACTIONS(456), + [anon_sym_break] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_if] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_nopanic] = ACTIONS(454), + [anon_sym_loop] = ACTIONS(454), + [anon_sym_match] = ACTIONS(454), + [anon_sym_pub] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [sym_numeric_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(452), + [sym_shortstring_literal] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [anon_sym_DOLLAR] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [sym_mutable_specifier] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_line_comment] = ACTIONS(3), + }, + [59] = { + [aux_sym__non_special_token_repeat1] = STATE(58), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_impl] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_trait] = ACTIONS(464), + [anon_sym_type] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_COLON] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_RBRACK] = ACTIONS(462), + [anon_sym_mod] = ACTIONS(464), + [anon_sym_struct] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_fn] = ACTIONS(464), + [anon_sym_DASH_GT] = ACTIONS(466), + [anon_sym_let] = ACTIONS(464), + [anon_sym_use] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym__] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_ByteArray] = ACTIONS(464), + [anon_sym_felt252] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(466), + [anon_sym_GT_GT] = ACTIONS(466), + [anon_sym_PLUS_EQ] = ACTIONS(466), + [anon_sym_DASH_EQ] = ACTIONS(466), + [anon_sym_STAR_EQ] = ACTIONS(466), + [anon_sym_SLASH_EQ] = ACTIONS(466), + [anon_sym_PERCENT_EQ] = ACTIONS(466), + [anon_sym_CARET_EQ] = ACTIONS(466), + [anon_sym_AMP_EQ] = ACTIONS(466), + [anon_sym_PIPE_EQ] = ACTIONS(466), + [anon_sym_EQ_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_EQ_GT] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_extern] = ACTIONS(464), + [anon_sym_nopanic] = ACTIONS(464), + [anon_sym_loop] = ACTIONS(464), + [anon_sym_match] = ACTIONS(464), + [anon_sym_pub] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [sym_numeric_literal] = ACTIONS(464), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_shortstring_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [anon_sym_DOLLAR] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [sym_mutable_specifier] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_line_comment] = ACTIONS(3), + }, + [60] = { + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_impl] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_trait] = ACTIONS(472), + [anon_sym_type] = ACTIONS(472), + [anon_sym_const] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(470), + [anon_sym_mod] = ACTIONS(472), + [anon_sym_struct] = ACTIONS(472), + [anon_sym_enum] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_fn] = ACTIONS(472), + [anon_sym_DASH_GT] = ACTIONS(470), + [anon_sym_let] = ACTIONS(472), + [anon_sym_use] = ACTIONS(472), + [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym__] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_ByteArray] = ACTIONS(472), + [anon_sym_felt252] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(470), + [anon_sym_DASH_EQ] = ACTIONS(470), + [anon_sym_STAR_EQ] = ACTIONS(470), + [anon_sym_SLASH_EQ] = ACTIONS(470), + [anon_sym_PERCENT_EQ] = ACTIONS(470), + [anon_sym_CARET_EQ] = ACTIONS(470), + [anon_sym_AMP_EQ] = ACTIONS(470), + [anon_sym_PIPE_EQ] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(472), + [anon_sym_EQ_GT] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_break] = ACTIONS(472), + [anon_sym_continue] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_if] = ACTIONS(472), + [anon_sym_extern] = ACTIONS(472), + [anon_sym_nopanic] = ACTIONS(472), + [anon_sym_loop] = ACTIONS(472), + [anon_sym_match] = ACTIONS(472), + [anon_sym_pub] = ACTIONS(472), + [anon_sym_return] = ACTIONS(472), + [anon_sym_static] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [sym_numeric_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(470), + [sym_shortstring_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [sym_mutable_specifier] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + }, + [61] = { + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_impl] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_const] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_RBRACK] = ACTIONS(474), + [anon_sym_mod] = ACTIONS(476), + [anon_sym_struct] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_fn] = ACTIONS(476), + [anon_sym_DASH_GT] = ACTIONS(474), + [anon_sym_let] = ACTIONS(476), + [anon_sym_use] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym__] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_u8] = ACTIONS(476), + [anon_sym_i8] = ACTIONS(476), + [anon_sym_u16] = ACTIONS(476), + [anon_sym_i16] = ACTIONS(476), + [anon_sym_u32] = ACTIONS(476), + [anon_sym_i32] = ACTIONS(476), + [anon_sym_u64] = ACTIONS(476), + [anon_sym_i64] = ACTIONS(476), + [anon_sym_u128] = ACTIONS(476), + [anon_sym_i128] = ACTIONS(476), + [anon_sym_usize] = ACTIONS(476), + [anon_sym_bool] = ACTIONS(476), + [anon_sym_ByteArray] = ACTIONS(476), + [anon_sym_felt252] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_SLASH] = ACTIONS(476), + [anon_sym_PERCENT] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_PLUS_EQ] = ACTIONS(474), + [anon_sym_DASH_EQ] = ACTIONS(474), + [anon_sym_STAR_EQ] = ACTIONS(474), + [anon_sym_SLASH_EQ] = ACTIONS(474), + [anon_sym_PERCENT_EQ] = ACTIONS(474), + [anon_sym_CARET_EQ] = ACTIONS(474), + [anon_sym_AMP_EQ] = ACTIONS(474), + [anon_sym_PIPE_EQ] = ACTIONS(474), + [anon_sym_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_AT] = ACTIONS(474), + [anon_sym_DOT_DOT] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(476), + [anon_sym_EQ_GT] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_break] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [anon_sym_extern] = ACTIONS(476), + [anon_sym_nopanic] = ACTIONS(476), + [anon_sym_loop] = ACTIONS(476), + [anon_sym_match] = ACTIONS(476), + [anon_sym_pub] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [sym_numeric_literal] = ACTIONS(476), + [aux_sym_string_literal_token1] = ACTIONS(474), + [sym_shortstring_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [sym_mutable_specifier] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + }, + [62] = { + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_impl] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_trait] = ACTIONS(480), + [anon_sym_type] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_RBRACK] = ACTIONS(478), + [anon_sym_mod] = ACTIONS(480), + [anon_sym_struct] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_fn] = ACTIONS(480), + [anon_sym_DASH_GT] = ACTIONS(478), + [anon_sym_let] = ACTIONS(480), + [anon_sym_use] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym__] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(480), + [anon_sym_i8] = ACTIONS(480), + [anon_sym_u16] = ACTIONS(480), + [anon_sym_i16] = ACTIONS(480), + [anon_sym_u32] = ACTIONS(480), + [anon_sym_i32] = ACTIONS(480), + [anon_sym_u64] = ACTIONS(480), + [anon_sym_i64] = ACTIONS(480), + [anon_sym_u128] = ACTIONS(480), + [anon_sym_i128] = ACTIONS(480), + [anon_sym_usize] = ACTIONS(480), + [anon_sym_bool] = ACTIONS(480), + [anon_sym_ByteArray] = ACTIONS(480), + [anon_sym_felt252] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_CARET_EQ] = ACTIONS(478), + [anon_sym_AMP_EQ] = ACTIONS(478), + [anon_sym_PIPE_EQ] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [anon_sym_EQ_GT] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_extern] = ACTIONS(480), + [anon_sym_nopanic] = ACTIONS(480), + [anon_sym_loop] = ACTIONS(480), + [anon_sym_match] = ACTIONS(480), + [anon_sym_pub] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_static] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [sym_numeric_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(478), + [sym_shortstring_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [sym_mutable_specifier] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + }, + [63] = { + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_impl] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_trait] = ACTIONS(484), + [anon_sym_type] = ACTIONS(484), + [anon_sym_const] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_mod] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_fn] = ACTIONS(484), + [anon_sym_DASH_GT] = ACTIONS(482), + [anon_sym_let] = ACTIONS(484), + [anon_sym_use] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym__] = ACTIONS(484), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_u8] = ACTIONS(484), + [anon_sym_i8] = ACTIONS(484), + [anon_sym_u16] = ACTIONS(484), + [anon_sym_i16] = ACTIONS(484), + [anon_sym_u32] = ACTIONS(484), + [anon_sym_i32] = ACTIONS(484), + [anon_sym_u64] = ACTIONS(484), + [anon_sym_i64] = ACTIONS(484), + [anon_sym_u128] = ACTIONS(484), + [anon_sym_i128] = ACTIONS(484), + [anon_sym_usize] = ACTIONS(484), + [anon_sym_bool] = ACTIONS(484), + [anon_sym_ByteArray] = ACTIONS(484), + [anon_sym_felt252] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(484), + [anon_sym_PERCENT] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(484), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_PLUS_EQ] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(482), + [anon_sym_STAR_EQ] = ACTIONS(482), + [anon_sym_SLASH_EQ] = ACTIONS(482), + [anon_sym_PERCENT_EQ] = ACTIONS(482), + [anon_sym_CARET_EQ] = ACTIONS(482), + [anon_sym_AMP_EQ] = ACTIONS(482), + [anon_sym_PIPE_EQ] = ACTIONS(482), + [anon_sym_EQ_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_DOT_DOT] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(484), + [anon_sym_EQ_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_break] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_default] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_extern] = ACTIONS(484), + [anon_sym_nopanic] = ACTIONS(484), + [anon_sym_loop] = ACTIONS(484), + [anon_sym_match] = ACTIONS(484), + [anon_sym_pub] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [sym_numeric_literal] = ACTIONS(484), + [aux_sym_string_literal_token1] = ACTIONS(482), + [sym_shortstring_literal] = ACTIONS(482), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(482), + [sym_identifier] = ACTIONS(484), + [sym_mutable_specifier] = ACTIONS(484), + [sym_super] = ACTIONS(484), + [sym_line_comment] = ACTIONS(3), + }, + [64] = { + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_impl] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_trait] = ACTIONS(488), + [anon_sym_type] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_mod] = ACTIONS(488), + [anon_sym_struct] = ACTIONS(488), + [anon_sym_enum] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_fn] = ACTIONS(488), + [anon_sym_DASH_GT] = ACTIONS(486), + [anon_sym_let] = ACTIONS(488), + [anon_sym_use] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym__] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_u8] = ACTIONS(488), + [anon_sym_i8] = ACTIONS(488), + [anon_sym_u16] = ACTIONS(488), + [anon_sym_i16] = ACTIONS(488), + [anon_sym_u32] = ACTIONS(488), + [anon_sym_i32] = ACTIONS(488), + [anon_sym_u64] = ACTIONS(488), + [anon_sym_i64] = ACTIONS(488), + [anon_sym_u128] = ACTIONS(488), + [anon_sym_i128] = ACTIONS(488), + [anon_sym_usize] = ACTIONS(488), + [anon_sym_bool] = ACTIONS(488), + [anon_sym_ByteArray] = ACTIONS(488), + [anon_sym_felt252] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_CARET] = ACTIONS(488), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_DASH_EQ] = ACTIONS(486), + [anon_sym_STAR_EQ] = ACTIONS(486), + [anon_sym_SLASH_EQ] = ACTIONS(486), + [anon_sym_PERCENT_EQ] = ACTIONS(486), + [anon_sym_CARET_EQ] = ACTIONS(486), + [anon_sym_AMP_EQ] = ACTIONS(486), + [anon_sym_PIPE_EQ] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_AT] = ACTIONS(486), + [anon_sym_DOT_DOT] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(488), + [anon_sym_EQ_GT] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_break] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_default] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_extern] = ACTIONS(488), + [anon_sym_nopanic] = ACTIONS(488), + [anon_sym_loop] = ACTIONS(488), + [anon_sym_match] = ACTIONS(488), + [anon_sym_pub] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_static] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [sym_numeric_literal] = ACTIONS(488), + [aux_sym_string_literal_token1] = ACTIONS(486), + [sym_shortstring_literal] = ACTIONS(486), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [sym_mutable_specifier] = ACTIONS(488), + [sym_super] = ACTIONS(488), + [sym_line_comment] = ACTIONS(3), + }, + [65] = { + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_impl] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_trait] = ACTIONS(492), + [anon_sym_type] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_RBRACK] = ACTIONS(490), + [anon_sym_mod] = ACTIONS(492), + [anon_sym_struct] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_fn] = ACTIONS(492), + [anon_sym_DASH_GT] = ACTIONS(490), + [anon_sym_let] = ACTIONS(492), + [anon_sym_use] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym__] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(492), + [anon_sym_i8] = ACTIONS(492), + [anon_sym_u16] = ACTIONS(492), + [anon_sym_i16] = ACTIONS(492), + [anon_sym_u32] = ACTIONS(492), + [anon_sym_i32] = ACTIONS(492), + [anon_sym_u64] = ACTIONS(492), + [anon_sym_i64] = ACTIONS(492), + [anon_sym_u128] = ACTIONS(492), + [anon_sym_i128] = ACTIONS(492), + [anon_sym_usize] = ACTIONS(492), + [anon_sym_bool] = ACTIONS(492), + [anon_sym_ByteArray] = ACTIONS(492), + [anon_sym_felt252] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(490), + [anon_sym_PIPE_PIPE] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(490), + [anon_sym_DASH_EQ] = ACTIONS(490), + [anon_sym_STAR_EQ] = ACTIONS(490), + [anon_sym_SLASH_EQ] = ACTIONS(490), + [anon_sym_PERCENT_EQ] = ACTIONS(490), + [anon_sym_CARET_EQ] = ACTIONS(490), + [anon_sym_AMP_EQ] = ACTIONS(490), + [anon_sym_PIPE_EQ] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(490), + [anon_sym_BANG_EQ] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_EQ_GT] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(490), + [anon_sym_break] = ACTIONS(492), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_default] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_extern] = ACTIONS(492), + [anon_sym_nopanic] = ACTIONS(492), + [anon_sym_loop] = ACTIONS(492), + [anon_sym_match] = ACTIONS(492), + [anon_sym_pub] = ACTIONS(492), + [anon_sym_return] = ACTIONS(492), + [anon_sym_static] = ACTIONS(492), + [anon_sym_while] = ACTIONS(492), + [sym_numeric_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(490), + [sym_shortstring_literal] = ACTIONS(490), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [sym_mutable_specifier] = ACTIONS(492), + [sym_super] = ACTIONS(492), + [sym_line_comment] = ACTIONS(3), + }, + [66] = { + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_impl] = ACTIONS(496), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_trait] = ACTIONS(496), + [anon_sym_type] = ACTIONS(496), + [anon_sym_const] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_POUND] = ACTIONS(494), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(494), + [anon_sym_mod] = ACTIONS(496), + [anon_sym_struct] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_fn] = ACTIONS(496), + [anon_sym_DASH_GT] = ACTIONS(494), + [anon_sym_let] = ACTIONS(496), + [anon_sym_use] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym__] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_u8] = ACTIONS(496), + [anon_sym_i8] = ACTIONS(496), + [anon_sym_u16] = ACTIONS(496), + [anon_sym_i16] = ACTIONS(496), + [anon_sym_u32] = ACTIONS(496), + [anon_sym_i32] = ACTIONS(496), + [anon_sym_u64] = ACTIONS(496), + [anon_sym_i64] = ACTIONS(496), + [anon_sym_u128] = ACTIONS(496), + [anon_sym_i128] = ACTIONS(496), + [anon_sym_usize] = ACTIONS(496), + [anon_sym_bool] = ACTIONS(496), + [anon_sym_ByteArray] = ACTIONS(496), + [anon_sym_felt252] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(496), + [anon_sym_CARET] = ACTIONS(496), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_AMP_AMP] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(494), + [anon_sym_DASH_EQ] = ACTIONS(494), + [anon_sym_STAR_EQ] = ACTIONS(494), + [anon_sym_SLASH_EQ] = ACTIONS(494), + [anon_sym_PERCENT_EQ] = ACTIONS(494), + [anon_sym_CARET_EQ] = ACTIONS(494), + [anon_sym_AMP_EQ] = ACTIONS(494), + [anon_sym_PIPE_EQ] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(494), + [anon_sym_BANG_EQ] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(494), + [anon_sym_break] = ACTIONS(496), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(496), + [anon_sym_if] = ACTIONS(496), + [anon_sym_extern] = ACTIONS(496), + [anon_sym_nopanic] = ACTIONS(496), + [anon_sym_loop] = ACTIONS(496), + [anon_sym_match] = ACTIONS(496), + [anon_sym_pub] = ACTIONS(496), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [sym_numeric_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(494), + [sym_shortstring_literal] = ACTIONS(494), + [anon_sym_true] = ACTIONS(496), + [anon_sym_false] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), + [sym_mutable_specifier] = ACTIONS(496), + [sym_super] = ACTIONS(496), + [sym_line_comment] = ACTIONS(3), + }, + [67] = { + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_impl] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_trait] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_RBRACK] = ACTIONS(498), + [anon_sym_mod] = ACTIONS(500), + [anon_sym_struct] = ACTIONS(500), + [anon_sym_enum] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_fn] = ACTIONS(500), + [anon_sym_DASH_GT] = ACTIONS(498), + [anon_sym_let] = ACTIONS(500), + [anon_sym_use] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym__] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_u8] = ACTIONS(500), + [anon_sym_i8] = ACTIONS(500), + [anon_sym_u16] = ACTIONS(500), + [anon_sym_i16] = ACTIONS(500), + [anon_sym_u32] = ACTIONS(500), + [anon_sym_i32] = ACTIONS(500), + [anon_sym_u64] = ACTIONS(500), + [anon_sym_i64] = ACTIONS(500), + [anon_sym_u128] = ACTIONS(500), + [anon_sym_i128] = ACTIONS(500), + [anon_sym_usize] = ACTIONS(500), + [anon_sym_bool] = ACTIONS(500), + [anon_sym_ByteArray] = ACTIONS(500), + [anon_sym_felt252] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_AMP_AMP] = ACTIONS(498), + [anon_sym_PIPE_PIPE] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_STAR_EQ] = ACTIONS(498), + [anon_sym_SLASH_EQ] = ACTIONS(498), + [anon_sym_PERCENT_EQ] = ACTIONS(498), + [anon_sym_CARET_EQ] = ACTIONS(498), + [anon_sym_AMP_EQ] = ACTIONS(498), + [anon_sym_PIPE_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(498), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_EQ_GT] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(498), + [anon_sym_break] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_extern] = ACTIONS(500), + [anon_sym_nopanic] = ACTIONS(500), + [anon_sym_loop] = ACTIONS(500), + [anon_sym_match] = ACTIONS(500), + [anon_sym_pub] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_static] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [sym_numeric_literal] = ACTIONS(502), + [aux_sym_string_literal_token1] = ACTIONS(498), + [sym_shortstring_literal] = ACTIONS(498), + [anon_sym_true] = ACTIONS(500), + [anon_sym_false] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [sym_mutable_specifier] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_impl] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_trait] = ACTIONS(507), + [anon_sym_type] = ACTIONS(507), + [anon_sym_const] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_RBRACK] = ACTIONS(505), + [anon_sym_mod] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_let] = ACTIONS(507), + [anon_sym_use] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_u8] = ACTIONS(507), + [anon_sym_i8] = ACTIONS(507), + [anon_sym_u16] = ACTIONS(507), + [anon_sym_i16] = ACTIONS(507), + [anon_sym_u32] = ACTIONS(507), + [anon_sym_i32] = ACTIONS(507), + [anon_sym_u64] = ACTIONS(507), + [anon_sym_i64] = ACTIONS(507), + [anon_sym_u128] = ACTIONS(507), + [anon_sym_i128] = ACTIONS(507), + [anon_sym_usize] = ACTIONS(507), + [anon_sym_bool] = ACTIONS(507), + [anon_sym_ByteArray] = ACTIONS(507), + [anon_sym_felt252] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_STAR_EQ] = ACTIONS(505), + [anon_sym_SLASH_EQ] = ACTIONS(505), + [anon_sym_PERCENT_EQ] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_break] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(507), + [anon_sym_if] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(507), + [anon_sym_loop] = ACTIONS(507), + [anon_sym_match] = ACTIONS(507), + [anon_sym_pub] = ACTIONS(507), + [anon_sym_return] = ACTIONS(507), + [anon_sym_while] = ACTIONS(507), + [sym_numeric_literal] = ACTIONS(507), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_shortstring_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_ref] = ACTIONS(507), + [sym_identifier] = ACTIONS(507), + [sym_super] = ACTIONS(507), + [sym_line_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_impl] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_trait] = ACTIONS(511), + [anon_sym_type] = ACTIONS(511), + [anon_sym_const] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_POUND] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_mod] = ACTIONS(511), + [anon_sym_struct] = ACTIONS(511), + [anon_sym_enum] = ACTIONS(511), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_fn] = ACTIONS(511), + [anon_sym_let] = ACTIONS(511), + [anon_sym_use] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(509), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_u8] = ACTIONS(511), + [anon_sym_i8] = ACTIONS(511), + [anon_sym_u16] = ACTIONS(511), + [anon_sym_i16] = ACTIONS(511), + [anon_sym_u32] = ACTIONS(511), + [anon_sym_i32] = ACTIONS(511), + [anon_sym_u64] = ACTIONS(511), + [anon_sym_i64] = ACTIONS(511), + [anon_sym_u128] = ACTIONS(511), + [anon_sym_i128] = ACTIONS(511), + [anon_sym_usize] = ACTIONS(511), + [anon_sym_bool] = ACTIONS(511), + [anon_sym_ByteArray] = ACTIONS(511), + [anon_sym_felt252] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(511), + [anon_sym_GT] = ACTIONS(511), + [anon_sym_PLUS] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(511), + [anon_sym_SLASH] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(509), + [anon_sym_TILDE] = ACTIONS(509), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PIPE] = ACTIONS(511), + [anon_sym_AMP_AMP] = ACTIONS(509), + [anon_sym_PIPE_PIPE] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(509), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_PLUS_EQ] = ACTIONS(509), + [anon_sym_DASH_EQ] = ACTIONS(509), + [anon_sym_STAR_EQ] = ACTIONS(509), + [anon_sym_SLASH_EQ] = ACTIONS(509), + [anon_sym_PERCENT_EQ] = ACTIONS(509), + [anon_sym_EQ_EQ] = ACTIONS(509), + [anon_sym_BANG_EQ] = ACTIONS(509), + [anon_sym_GT_EQ] = ACTIONS(509), + [anon_sym_LT_EQ] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(509), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_break] = ACTIONS(511), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(511), + [anon_sym_if] = ACTIONS(511), + [anon_sym_extern] = ACTIONS(511), + [anon_sym_loop] = ACTIONS(511), + [anon_sym_match] = ACTIONS(511), + [anon_sym_pub] = ACTIONS(511), + [anon_sym_return] = ACTIONS(511), + [anon_sym_while] = ACTIONS(511), + [sym_numeric_literal] = ACTIONS(511), + [aux_sym_string_literal_token1] = ACTIONS(509), + [sym_shortstring_literal] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_ref] = ACTIONS(511), + [sym_identifier] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_line_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_impl] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(513), + [anon_sym_trait] = ACTIONS(515), + [anon_sym_type] = ACTIONS(515), + [anon_sym_const] = ACTIONS(515), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_RBRACK] = ACTIONS(513), + [anon_sym_mod] = ACTIONS(515), + [anon_sym_struct] = ACTIONS(515), + [anon_sym_enum] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(513), + [anon_sym_fn] = ACTIONS(515), + [anon_sym_let] = ACTIONS(515), + [anon_sym_use] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_u8] = ACTIONS(515), + [anon_sym_i8] = ACTIONS(515), + [anon_sym_u16] = ACTIONS(515), + [anon_sym_i16] = ACTIONS(515), + [anon_sym_u32] = ACTIONS(515), + [anon_sym_i32] = ACTIONS(515), + [anon_sym_u64] = ACTIONS(515), + [anon_sym_i64] = ACTIONS(515), + [anon_sym_u128] = ACTIONS(515), + [anon_sym_i128] = ACTIONS(515), + [anon_sym_usize] = ACTIONS(515), + [anon_sym_bool] = ACTIONS(515), + [anon_sym_ByteArray] = ACTIONS(515), + [anon_sym_felt252] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(513), + [anon_sym_PIPE_PIPE] = ACTIONS(513), + [anon_sym_LT_LT] = ACTIONS(513), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_PERCENT_EQ] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_break] = ACTIONS(515), + [anon_sym_continue] = ACTIONS(515), + [anon_sym_default] = ACTIONS(515), + [anon_sym_if] = ACTIONS(515), + [anon_sym_extern] = ACTIONS(515), + [anon_sym_loop] = ACTIONS(515), + [anon_sym_match] = ACTIONS(515), + [anon_sym_pub] = ACTIONS(515), + [anon_sym_return] = ACTIONS(515), + [anon_sym_while] = ACTIONS(515), + [sym_numeric_literal] = ACTIONS(515), + [aux_sym_string_literal_token1] = ACTIONS(513), + [sym_shortstring_literal] = ACTIONS(513), + [anon_sym_true] = ACTIONS(515), + [anon_sym_false] = ACTIONS(515), + [anon_sym_ref] = ACTIONS(515), + [sym_identifier] = ACTIONS(515), + [sym_super] = ACTIONS(515), + [sym_line_comment] = ACTIONS(3), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_impl] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_trait] = ACTIONS(519), + [anon_sym_type] = ACTIONS(519), + [anon_sym_const] = ACTIONS(519), + [anon_sym_EQ] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_RBRACK] = ACTIONS(517), + [anon_sym_mod] = ACTIONS(519), + [anon_sym_struct] = ACTIONS(519), + [anon_sym_enum] = ACTIONS(519), + [anon_sym_COMMA] = ACTIONS(517), + [anon_sym_fn] = ACTIONS(519), + [anon_sym_let] = ACTIONS(519), + [anon_sym_use] = ACTIONS(519), + [anon_sym_COLON_COLON] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(517), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_u8] = ACTIONS(519), + [anon_sym_i8] = ACTIONS(519), + [anon_sym_u16] = ACTIONS(519), + [anon_sym_i16] = ACTIONS(519), + [anon_sym_u32] = ACTIONS(519), + [anon_sym_i32] = ACTIONS(519), + [anon_sym_u64] = ACTIONS(519), + [anon_sym_i64] = ACTIONS(519), + [anon_sym_u128] = ACTIONS(519), + [anon_sym_i128] = ACTIONS(519), + [anon_sym_usize] = ACTIONS(519), + [anon_sym_bool] = ACTIONS(519), + [anon_sym_ByteArray] = ACTIONS(519), + [anon_sym_felt252] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(519), + [anon_sym_GT] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(519), + [anon_sym_PERCENT] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(517), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(517), + [anon_sym_PIPE_PIPE] = ACTIONS(517), + [anon_sym_LT_LT] = ACTIONS(517), + [anon_sym_GT_GT] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(517), + [anon_sym_DASH_EQ] = ACTIONS(517), + [anon_sym_STAR_EQ] = ACTIONS(517), + [anon_sym_SLASH_EQ] = ACTIONS(517), + [anon_sym_PERCENT_EQ] = ACTIONS(517), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_BANG_EQ] = ACTIONS(517), + [anon_sym_GT_EQ] = ACTIONS(517), + [anon_sym_LT_EQ] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(519), + [anon_sym_default] = ACTIONS(519), + [anon_sym_if] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(519), + [anon_sym_loop] = ACTIONS(519), + [anon_sym_match] = ACTIONS(519), + [anon_sym_pub] = ACTIONS(519), + [anon_sym_return] = ACTIONS(519), + [anon_sym_while] = ACTIONS(519), + [sym_numeric_literal] = ACTIONS(519), + [aux_sym_string_literal_token1] = ACTIONS(517), + [sym_shortstring_literal] = ACTIONS(517), + [anon_sym_true] = ACTIONS(519), + [anon_sym_false] = ACTIONS(519), + [anon_sym_ref] = ACTIONS(519), + [sym_identifier] = ACTIONS(519), + [sym_super] = ACTIONS(519), + [sym_line_comment] = ACTIONS(3), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_impl] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_trait] = ACTIONS(488), + [anon_sym_type] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_mod] = ACTIONS(488), + [anon_sym_struct] = ACTIONS(488), + [anon_sym_enum] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_fn] = ACTIONS(488), + [anon_sym_let] = ACTIONS(488), + [anon_sym_use] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_u8] = ACTIONS(488), + [anon_sym_i8] = ACTIONS(488), + [anon_sym_u16] = ACTIONS(488), + [anon_sym_i16] = ACTIONS(488), + [anon_sym_u32] = ACTIONS(488), + [anon_sym_i32] = ACTIONS(488), + [anon_sym_u64] = ACTIONS(488), + [anon_sym_i64] = ACTIONS(488), + [anon_sym_u128] = ACTIONS(488), + [anon_sym_i128] = ACTIONS(488), + [anon_sym_usize] = ACTIONS(488), + [anon_sym_bool] = ACTIONS(488), + [anon_sym_ByteArray] = ACTIONS(488), + [anon_sym_felt252] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_DASH_EQ] = ACTIONS(486), + [anon_sym_STAR_EQ] = ACTIONS(486), + [anon_sym_SLASH_EQ] = ACTIONS(486), + [anon_sym_PERCENT_EQ] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_AT] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_break] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_default] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_extern] = ACTIONS(488), + [anon_sym_loop] = ACTIONS(488), + [anon_sym_match] = ACTIONS(488), + [anon_sym_pub] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [sym_numeric_literal] = ACTIONS(488), + [aux_sym_string_literal_token1] = ACTIONS(486), + [sym_shortstring_literal] = ACTIONS(486), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), + [anon_sym_ref] = ACTIONS(488), + [sym_identifier] = ACTIONS(488), + [sym_super] = ACTIONS(488), + [sym_line_comment] = ACTIONS(3), + }, + [73] = { + [ts_builtin_sym_end] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_impl] = ACTIONS(523), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_trait] = ACTIONS(523), + [anon_sym_type] = ACTIONS(523), + [anon_sym_const] = ACTIONS(523), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_POUND] = ACTIONS(521), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_RBRACK] = ACTIONS(521), + [anon_sym_mod] = ACTIONS(523), + [anon_sym_struct] = ACTIONS(523), + [anon_sym_enum] = ACTIONS(523), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_fn] = ACTIONS(523), + [anon_sym_let] = ACTIONS(523), + [anon_sym_use] = ACTIONS(523), + [anon_sym_COLON_COLON] = ACTIONS(521), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_LPAREN] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_u8] = ACTIONS(523), + [anon_sym_i8] = ACTIONS(523), + [anon_sym_u16] = ACTIONS(523), + [anon_sym_i16] = ACTIONS(523), + [anon_sym_u32] = ACTIONS(523), + [anon_sym_i32] = ACTIONS(523), + [anon_sym_u64] = ACTIONS(523), + [anon_sym_i64] = ACTIONS(523), + [anon_sym_u128] = ACTIONS(523), + [anon_sym_i128] = ACTIONS(523), + [anon_sym_usize] = ACTIONS(523), + [anon_sym_bool] = ACTIONS(523), + [anon_sym_ByteArray] = ACTIONS(523), + [anon_sym_felt252] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(523), + [anon_sym_GT] = ACTIONS(523), + [anon_sym_PLUS] = ACTIONS(523), + [anon_sym_DASH] = ACTIONS(523), + [anon_sym_SLASH] = ACTIONS(523), + [anon_sym_PERCENT] = ACTIONS(523), + [anon_sym_CARET] = ACTIONS(521), + [anon_sym_TILDE] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(523), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(521), + [anon_sym_GT_GT] = ACTIONS(521), + [anon_sym_PLUS_EQ] = ACTIONS(521), + [anon_sym_DASH_EQ] = ACTIONS(521), + [anon_sym_STAR_EQ] = ACTIONS(521), + [anon_sym_SLASH_EQ] = ACTIONS(521), + [anon_sym_PERCENT_EQ] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(521), + [anon_sym_BANG_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_AT] = ACTIONS(521), + [anon_sym_DOT] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(521), + [anon_sym_break] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_default] = ACTIONS(523), + [anon_sym_if] = ACTIONS(523), + [anon_sym_extern] = ACTIONS(523), + [anon_sym_loop] = ACTIONS(523), + [anon_sym_match] = ACTIONS(523), + [anon_sym_pub] = ACTIONS(523), + [anon_sym_return] = ACTIONS(523), + [anon_sym_while] = ACTIONS(523), + [sym_numeric_literal] = ACTIONS(523), + [aux_sym_string_literal_token1] = ACTIONS(521), + [sym_shortstring_literal] = ACTIONS(521), + [anon_sym_true] = ACTIONS(523), + [anon_sym_false] = ACTIONS(523), + [anon_sym_ref] = ACTIONS(523), + [sym_identifier] = ACTIONS(523), + [sym_super] = ACTIONS(523), + [sym_line_comment] = ACTIONS(3), + }, + [74] = { + [ts_builtin_sym_end] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_impl] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_trait] = ACTIONS(527), + [anon_sym_type] = ACTIONS(527), + [anon_sym_const] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_RBRACK] = ACTIONS(525), + [anon_sym_mod] = ACTIONS(527), + [anon_sym_struct] = ACTIONS(527), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_fn] = ACTIONS(527), + [anon_sym_let] = ACTIONS(527), + [anon_sym_use] = ACTIONS(527), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_u8] = ACTIONS(527), + [anon_sym_i8] = ACTIONS(527), + [anon_sym_u16] = ACTIONS(527), + [anon_sym_i16] = ACTIONS(527), + [anon_sym_u32] = ACTIONS(527), + [anon_sym_i32] = ACTIONS(527), + [anon_sym_u64] = ACTIONS(527), + [anon_sym_i64] = ACTIONS(527), + [anon_sym_u128] = ACTIONS(527), + [anon_sym_i128] = ACTIONS(527), + [anon_sym_usize] = ACTIONS(527), + [anon_sym_bool] = ACTIONS(527), + [anon_sym_ByteArray] = ACTIONS(527), + [anon_sym_felt252] = ACTIONS(527), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_PERCENT] = ACTIONS(527), + [anon_sym_CARET] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(525), + [anon_sym_DASH_EQ] = ACTIONS(525), + [anon_sym_STAR_EQ] = ACTIONS(525), + [anon_sym_SLASH_EQ] = ACTIONS(525), + [anon_sym_PERCENT_EQ] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_AT] = ACTIONS(525), + [anon_sym_DOT] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_continue] = ACTIONS(527), + [anon_sym_default] = ACTIONS(527), + [anon_sym_if] = ACTIONS(527), + [anon_sym_extern] = ACTIONS(527), + [anon_sym_loop] = ACTIONS(527), + [anon_sym_match] = ACTIONS(527), + [anon_sym_pub] = ACTIONS(527), + [anon_sym_return] = ACTIONS(527), + [anon_sym_while] = ACTIONS(527), + [sym_numeric_literal] = ACTIONS(527), + [aux_sym_string_literal_token1] = ACTIONS(525), + [sym_shortstring_literal] = ACTIONS(525), + [anon_sym_true] = ACTIONS(527), + [anon_sym_false] = ACTIONS(527), + [anon_sym_ref] = ACTIONS(527), + [sym_identifier] = ACTIONS(527), + [sym_super] = ACTIONS(527), + [sym_line_comment] = ACTIONS(3), + }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_impl] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_trait] = ACTIONS(480), + [anon_sym_type] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_RBRACK] = ACTIONS(478), + [anon_sym_mod] = ACTIONS(480), + [anon_sym_struct] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_fn] = ACTIONS(480), + [anon_sym_let] = ACTIONS(480), + [anon_sym_use] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(480), + [anon_sym_i8] = ACTIONS(480), + [anon_sym_u16] = ACTIONS(480), + [anon_sym_i16] = ACTIONS(480), + [anon_sym_u32] = ACTIONS(480), + [anon_sym_i32] = ACTIONS(480), + [anon_sym_u64] = ACTIONS(480), + [anon_sym_i64] = ACTIONS(480), + [anon_sym_u128] = ACTIONS(480), + [anon_sym_i128] = ACTIONS(480), + [anon_sym_usize] = ACTIONS(480), + [anon_sym_bool] = ACTIONS(480), + [anon_sym_ByteArray] = ACTIONS(480), + [anon_sym_felt252] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_extern] = ACTIONS(480), + [anon_sym_loop] = ACTIONS(480), + [anon_sym_match] = ACTIONS(480), + [anon_sym_pub] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [sym_numeric_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(478), + [sym_shortstring_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [anon_sym_ref] = ACTIONS(480), + [sym_identifier] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(529), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_impl] = ACTIONS(531), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym_trait] = ACTIONS(531), + [anon_sym_type] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_EQ] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_POUND] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(529), + [anon_sym_RBRACK] = ACTIONS(529), + [anon_sym_mod] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(531), + [anon_sym_enum] = ACTIONS(531), + [anon_sym_COMMA] = ACTIONS(529), + [anon_sym_fn] = ACTIONS(531), + [anon_sym_let] = ACTIONS(531), + [anon_sym_use] = ACTIONS(531), + [anon_sym_COLON_COLON] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(531), + [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_u8] = ACTIONS(531), + [anon_sym_i8] = ACTIONS(531), + [anon_sym_u16] = ACTIONS(531), + [anon_sym_i16] = ACTIONS(531), + [anon_sym_u32] = ACTIONS(531), + [anon_sym_i32] = ACTIONS(531), + [anon_sym_u64] = ACTIONS(531), + [anon_sym_i64] = ACTIONS(531), + [anon_sym_u128] = ACTIONS(531), + [anon_sym_i128] = ACTIONS(531), + [anon_sym_usize] = ACTIONS(531), + [anon_sym_bool] = ACTIONS(531), + [anon_sym_ByteArray] = ACTIONS(531), + [anon_sym_felt252] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(531), + [anon_sym_CARET] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(529), + [anon_sym_AMP] = ACTIONS(531), + [anon_sym_PIPE] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(529), + [anon_sym_PIPE_PIPE] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(529), + [anon_sym_GT_GT] = ACTIONS(529), + [anon_sym_PLUS_EQ] = ACTIONS(529), + [anon_sym_DASH_EQ] = ACTIONS(529), + [anon_sym_STAR_EQ] = ACTIONS(529), + [anon_sym_SLASH_EQ] = ACTIONS(529), + [anon_sym_PERCENT_EQ] = ACTIONS(529), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ] = ACTIONS(529), + [anon_sym_GT_EQ] = ACTIONS(529), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_QMARK] = ACTIONS(529), + [anon_sym_break] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_default] = ACTIONS(531), + [anon_sym_if] = ACTIONS(531), + [anon_sym_extern] = ACTIONS(531), + [anon_sym_loop] = ACTIONS(531), + [anon_sym_match] = ACTIONS(531), + [anon_sym_pub] = ACTIONS(531), + [anon_sym_return] = ACTIONS(531), + [anon_sym_while] = ACTIONS(531), + [sym_numeric_literal] = ACTIONS(531), + [aux_sym_string_literal_token1] = ACTIONS(529), + [sym_shortstring_literal] = ACTIONS(529), + [anon_sym_true] = ACTIONS(531), + [anon_sym_false] = ACTIONS(531), + [anon_sym_ref] = ACTIONS(531), + [sym_identifier] = ACTIONS(531), + [sym_super] = ACTIONS(531), + [sym_line_comment] = ACTIONS(3), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_impl] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_trait] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(533), + [anon_sym_RBRACK] = ACTIONS(533), + [anon_sym_mod] = ACTIONS(535), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_fn] = ACTIONS(535), + [anon_sym_let] = ACTIONS(535), + [anon_sym_use] = ACTIONS(535), + [anon_sym_COLON_COLON] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_u8] = ACTIONS(535), + [anon_sym_i8] = ACTIONS(535), + [anon_sym_u16] = ACTIONS(535), + [anon_sym_i16] = ACTIONS(535), + [anon_sym_u32] = ACTIONS(535), + [anon_sym_i32] = ACTIONS(535), + [anon_sym_u64] = ACTIONS(535), + [anon_sym_i64] = ACTIONS(535), + [anon_sym_u128] = ACTIONS(535), + [anon_sym_i128] = ACTIONS(535), + [anon_sym_usize] = ACTIONS(535), + [anon_sym_bool] = ACTIONS(535), + [anon_sym_ByteArray] = ACTIONS(535), + [anon_sym_felt252] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_SLASH] = ACTIONS(535), + [anon_sym_PERCENT] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_LT_LT] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(533), + [anon_sym_PLUS_EQ] = ACTIONS(533), + [anon_sym_DASH_EQ] = ACTIONS(533), + [anon_sym_STAR_EQ] = ACTIONS(533), + [anon_sym_SLASH_EQ] = ACTIONS(533), + [anon_sym_PERCENT_EQ] = ACTIONS(533), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(533), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_break] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_default] = ACTIONS(535), + [anon_sym_if] = ACTIONS(535), + [anon_sym_extern] = ACTIONS(535), + [anon_sym_loop] = ACTIONS(535), + [anon_sym_match] = ACTIONS(535), + [anon_sym_pub] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [sym_numeric_literal] = ACTIONS(535), + [aux_sym_string_literal_token1] = ACTIONS(533), + [sym_shortstring_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_ref] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [sym_super] = ACTIONS(535), + [sym_line_comment] = ACTIONS(3), + }, + [78] = { + [ts_builtin_sym_end] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_impl] = ACTIONS(539), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_trait] = ACTIONS(539), + [anon_sym_type] = ACTIONS(539), + [anon_sym_const] = ACTIONS(539), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(537), + [anon_sym_RBRACK] = ACTIONS(537), + [anon_sym_mod] = ACTIONS(539), + [anon_sym_struct] = ACTIONS(539), + [anon_sym_enum] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_fn] = ACTIONS(539), + [anon_sym_let] = ACTIONS(539), + [anon_sym_use] = ACTIONS(539), + [anon_sym_COLON_COLON] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_u8] = ACTIONS(539), + [anon_sym_i8] = ACTIONS(539), + [anon_sym_u16] = ACTIONS(539), + [anon_sym_i16] = ACTIONS(539), + [anon_sym_u32] = ACTIONS(539), + [anon_sym_i32] = ACTIONS(539), + [anon_sym_u64] = ACTIONS(539), + [anon_sym_i64] = ACTIONS(539), + [anon_sym_u128] = ACTIONS(539), + [anon_sym_i128] = ACTIONS(539), + [anon_sym_usize] = ACTIONS(539), + [anon_sym_bool] = ACTIONS(539), + [anon_sym_ByteArray] = ACTIONS(539), + [anon_sym_felt252] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_PERCENT] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(539), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_PLUS_EQ] = ACTIONS(537), + [anon_sym_DASH_EQ] = ACTIONS(537), + [anon_sym_STAR_EQ] = ACTIONS(537), + [anon_sym_SLASH_EQ] = ACTIONS(537), + [anon_sym_PERCENT_EQ] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(537), + [anon_sym_break] = ACTIONS(539), + [anon_sym_continue] = ACTIONS(539), + [anon_sym_default] = ACTIONS(539), + [anon_sym_if] = ACTIONS(539), + [anon_sym_extern] = ACTIONS(539), + [anon_sym_loop] = ACTIONS(539), + [anon_sym_match] = ACTIONS(539), + [anon_sym_pub] = ACTIONS(539), + [anon_sym_return] = ACTIONS(539), + [anon_sym_while] = ACTIONS(539), + [sym_numeric_literal] = ACTIONS(539), + [aux_sym_string_literal_token1] = ACTIONS(537), + [sym_shortstring_literal] = ACTIONS(537), + [anon_sym_true] = ACTIONS(539), + [anon_sym_false] = ACTIONS(539), + [anon_sym_ref] = ACTIONS(539), + [sym_identifier] = ACTIONS(539), + [sym_super] = ACTIONS(539), + [sym_line_comment] = ACTIONS(3), + }, + [79] = { + [ts_builtin_sym_end] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_impl] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_trait] = ACTIONS(543), + [anon_sym_type] = ACTIONS(543), + [anon_sym_const] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_POUND] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(541), + [anon_sym_mod] = ACTIONS(543), + [anon_sym_struct] = ACTIONS(543), + [anon_sym_enum] = ACTIONS(543), + [anon_sym_COMMA] = ACTIONS(541), + [anon_sym_fn] = ACTIONS(543), + [anon_sym_let] = ACTIONS(543), + [anon_sym_use] = ACTIONS(543), + [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_u8] = ACTIONS(543), + [anon_sym_i8] = ACTIONS(543), + [anon_sym_u16] = ACTIONS(543), + [anon_sym_i16] = ACTIONS(543), + [anon_sym_u32] = ACTIONS(543), + [anon_sym_i32] = ACTIONS(543), + [anon_sym_u64] = ACTIONS(543), + [anon_sym_i64] = ACTIONS(543), + [anon_sym_u128] = ACTIONS(543), + [anon_sym_i128] = ACTIONS(543), + [anon_sym_usize] = ACTIONS(543), + [anon_sym_bool] = ACTIONS(543), + [anon_sym_ByteArray] = ACTIONS(543), + [anon_sym_felt252] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(543), + [anon_sym_CARET] = ACTIONS(541), + [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT_LT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_STAR_EQ] = ACTIONS(541), + [anon_sym_SLASH_EQ] = ACTIONS(541), + [anon_sym_PERCENT_EQ] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_DOT] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(541), + [anon_sym_break] = ACTIONS(543), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_default] = ACTIONS(543), + [anon_sym_if] = ACTIONS(543), + [anon_sym_extern] = ACTIONS(543), + [anon_sym_loop] = ACTIONS(543), + [anon_sym_match] = ACTIONS(543), + [anon_sym_pub] = ACTIONS(543), + [anon_sym_return] = ACTIONS(543), + [anon_sym_while] = ACTIONS(543), + [sym_numeric_literal] = ACTIONS(543), + [aux_sym_string_literal_token1] = ACTIONS(541), + [sym_shortstring_literal] = ACTIONS(541), + [anon_sym_true] = ACTIONS(543), + [anon_sym_false] = ACTIONS(543), + [anon_sym_ref] = ACTIONS(543), + [sym_identifier] = ACTIONS(543), + [sym_super] = ACTIONS(543), + [sym_line_comment] = ACTIONS(3), + }, + [80] = { + [ts_builtin_sym_end] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_impl] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_trait] = ACTIONS(547), + [anon_sym_type] = ACTIONS(547), + [anon_sym_const] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_POUND] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(545), + [anon_sym_RBRACK] = ACTIONS(545), + [anon_sym_mod] = ACTIONS(547), + [anon_sym_struct] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(545), + [anon_sym_fn] = ACTIONS(547), + [anon_sym_let] = ACTIONS(547), + [anon_sym_use] = ACTIONS(547), + [anon_sym_COLON_COLON] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(547), + [anon_sym_i8] = ACTIONS(547), + [anon_sym_u16] = ACTIONS(547), + [anon_sym_i16] = ACTIONS(547), + [anon_sym_u32] = ACTIONS(547), + [anon_sym_i32] = ACTIONS(547), + [anon_sym_u64] = ACTIONS(547), + [anon_sym_i64] = ACTIONS(547), + [anon_sym_u128] = ACTIONS(547), + [anon_sym_i128] = ACTIONS(547), + [anon_sym_usize] = ACTIONS(547), + [anon_sym_bool] = ACTIONS(547), + [anon_sym_ByteArray] = ACTIONS(547), + [anon_sym_felt252] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(547), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_SLASH] = ACTIONS(547), + [anon_sym_PERCENT] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(545), + [anon_sym_PIPE_PIPE] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_PLUS_EQ] = ACTIONS(545), + [anon_sym_DASH_EQ] = ACTIONS(545), + [anon_sym_STAR_EQ] = ACTIONS(545), + [anon_sym_SLASH_EQ] = ACTIONS(545), + [anon_sym_PERCENT_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_BANG_EQ] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(545), + [anon_sym_break] = ACTIONS(547), + [anon_sym_continue] = ACTIONS(547), + [anon_sym_default] = ACTIONS(547), + [anon_sym_if] = ACTIONS(547), + [anon_sym_extern] = ACTIONS(547), + [anon_sym_loop] = ACTIONS(547), + [anon_sym_match] = ACTIONS(547), + [anon_sym_pub] = ACTIONS(547), + [anon_sym_return] = ACTIONS(547), + [anon_sym_while] = ACTIONS(547), + [sym_numeric_literal] = ACTIONS(547), + [aux_sym_string_literal_token1] = ACTIONS(545), + [sym_shortstring_literal] = ACTIONS(545), + [anon_sym_true] = ACTIONS(547), + [anon_sym_false] = ACTIONS(547), + [anon_sym_ref] = ACTIONS(547), + [sym_identifier] = ACTIONS(547), + [sym_super] = ACTIONS(547), + [sym_line_comment] = ACTIONS(3), + }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_impl] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_trait] = ACTIONS(551), + [anon_sym_type] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(549), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_mod] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_fn] = ACTIONS(551), + [anon_sym_let] = ACTIONS(551), + [anon_sym_use] = ACTIONS(551), + [anon_sym_COLON_COLON] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u128] = ACTIONS(551), + [anon_sym_i128] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_ByteArray] = ACTIONS(551), + [anon_sym_felt252] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(551), + [anon_sym_PERCENT] = ACTIONS(551), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_PERCENT_EQ] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_default] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_extern] = ACTIONS(551), + [anon_sym_loop] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_pub] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [sym_numeric_literal] = ACTIONS(551), + [aux_sym_string_literal_token1] = ACTIONS(549), + [sym_shortstring_literal] = ACTIONS(549), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [anon_sym_ref] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [sym_super] = ACTIONS(551), + [sym_line_comment] = ACTIONS(3), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_impl] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(553), + [anon_sym_trait] = ACTIONS(555), + [anon_sym_type] = ACTIONS(555), + [anon_sym_const] = ACTIONS(555), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(553), + [anon_sym_RBRACK] = ACTIONS(553), + [anon_sym_mod] = ACTIONS(555), + [anon_sym_struct] = ACTIONS(555), + [anon_sym_enum] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(553), + [anon_sym_fn] = ACTIONS(555), + [anon_sym_let] = ACTIONS(555), + [anon_sym_use] = ACTIONS(555), + [anon_sym_COLON_COLON] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_u8] = ACTIONS(555), + [anon_sym_i8] = ACTIONS(555), + [anon_sym_u16] = ACTIONS(555), + [anon_sym_i16] = ACTIONS(555), + [anon_sym_u32] = ACTIONS(555), + [anon_sym_i32] = ACTIONS(555), + [anon_sym_u64] = ACTIONS(555), + [anon_sym_i64] = ACTIONS(555), + [anon_sym_u128] = ACTIONS(555), + [anon_sym_i128] = ACTIONS(555), + [anon_sym_usize] = ACTIONS(555), + [anon_sym_bool] = ACTIONS(555), + [anon_sym_ByteArray] = ACTIONS(555), + [anon_sym_felt252] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(553), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_AMP] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(553), + [anon_sym_PIPE_PIPE] = ACTIONS(553), + [anon_sym_LT_LT] = ACTIONS(553), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_PLUS_EQ] = ACTIONS(553), + [anon_sym_DASH_EQ] = ACTIONS(553), + [anon_sym_STAR_EQ] = ACTIONS(553), + [anon_sym_SLASH_EQ] = ACTIONS(553), + [anon_sym_PERCENT_EQ] = ACTIONS(553), + [anon_sym_EQ_EQ] = ACTIONS(553), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_GT_EQ] = ACTIONS(553), + [anon_sym_LT_EQ] = ACTIONS(553), + [anon_sym_AT] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(553), + [anon_sym_break] = ACTIONS(555), + [anon_sym_continue] = ACTIONS(555), + [anon_sym_default] = ACTIONS(555), + [anon_sym_if] = ACTIONS(555), + [anon_sym_extern] = ACTIONS(555), + [anon_sym_loop] = ACTIONS(555), + [anon_sym_match] = ACTIONS(555), + [anon_sym_pub] = ACTIONS(555), + [anon_sym_return] = ACTIONS(555), + [anon_sym_while] = ACTIONS(555), + [sym_numeric_literal] = ACTIONS(555), + [aux_sym_string_literal_token1] = ACTIONS(553), + [sym_shortstring_literal] = ACTIONS(553), + [anon_sym_true] = ACTIONS(555), + [anon_sym_false] = ACTIONS(555), + [anon_sym_ref] = ACTIONS(555), + [sym_identifier] = ACTIONS(555), + [sym_super] = ACTIONS(555), + [sym_line_comment] = ACTIONS(3), + }, + [83] = { + [sym_else_clause] = STATE(69), + [ts_builtin_sym_end] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(557), + [anon_sym_impl] = ACTIONS(559), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_trait] = ACTIONS(559), + [anon_sym_type] = ACTIONS(559), + [anon_sym_const] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(559), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_POUND] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_mod] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(559), + [anon_sym_enum] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(559), + [anon_sym_let] = ACTIONS(559), + [anon_sym_use] = ACTIONS(559), + [anon_sym_COLON_COLON] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_u8] = ACTIONS(559), + [anon_sym_i8] = ACTIONS(559), + [anon_sym_u16] = ACTIONS(559), + [anon_sym_i16] = ACTIONS(559), + [anon_sym_u32] = ACTIONS(559), + [anon_sym_i32] = ACTIONS(559), + [anon_sym_u64] = ACTIONS(559), + [anon_sym_i64] = ACTIONS(559), + [anon_sym_u128] = ACTIONS(559), + [anon_sym_i128] = ACTIONS(559), + [anon_sym_usize] = ACTIONS(559), + [anon_sym_bool] = ACTIONS(559), + [anon_sym_ByteArray] = ACTIONS(559), + [anon_sym_felt252] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(559), + [anon_sym_GT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(559), + [anon_sym_DASH] = ACTIONS(559), + [anon_sym_SLASH] = ACTIONS(559), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(557), + [anon_sym_STAR_EQ] = ACTIONS(557), + [anon_sym_SLASH_EQ] = ACTIONS(557), + [anon_sym_PERCENT_EQ] = ACTIONS(557), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(557), + [anon_sym_break] = ACTIONS(559), + [anon_sym_continue] = ACTIONS(559), + [anon_sym_default] = ACTIONS(559), + [anon_sym_if] = ACTIONS(559), + [anon_sym_extern] = ACTIONS(559), + [anon_sym_loop] = ACTIONS(559), + [anon_sym_match] = ACTIONS(559), + [anon_sym_pub] = ACTIONS(559), + [anon_sym_return] = ACTIONS(559), + [anon_sym_while] = ACTIONS(559), + [sym_numeric_literal] = ACTIONS(559), + [aux_sym_string_literal_token1] = ACTIONS(557), + [sym_shortstring_literal] = ACTIONS(557), + [anon_sym_true] = ACTIONS(559), + [anon_sym_false] = ACTIONS(559), + [anon_sym_else] = ACTIONS(561), + [anon_sym_ref] = ACTIONS(559), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(559), + [sym_line_comment] = ACTIONS(3), + }, + [84] = { + [ts_builtin_sym_end] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_impl] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_trait] = ACTIONS(527), + [anon_sym_type] = ACTIONS(527), + [anon_sym_const] = ACTIONS(527), + [anon_sym_EQ] = ACTIONS(527), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(525), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_mod] = ACTIONS(527), + [anon_sym_struct] = ACTIONS(527), + [anon_sym_enum] = ACTIONS(527), + [anon_sym_fn] = ACTIONS(527), + [anon_sym_let] = ACTIONS(527), + [anon_sym_use] = ACTIONS(527), + [anon_sym_COLON_COLON] = ACTIONS(525), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym_LPAREN] = ACTIONS(525), + [anon_sym_u8] = ACTIONS(527), + [anon_sym_i8] = ACTIONS(527), + [anon_sym_u16] = ACTIONS(527), + [anon_sym_i16] = ACTIONS(527), + [anon_sym_u32] = ACTIONS(527), + [anon_sym_i32] = ACTIONS(527), + [anon_sym_u64] = ACTIONS(527), + [anon_sym_i64] = ACTIONS(527), + [anon_sym_u128] = ACTIONS(527), + [anon_sym_i128] = ACTIONS(527), + [anon_sym_usize] = ACTIONS(527), + [anon_sym_bool] = ACTIONS(527), + [anon_sym_ByteArray] = ACTIONS(527), + [anon_sym_felt252] = ACTIONS(527), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_PERCENT] = ACTIONS(527), + [anon_sym_CARET] = ACTIONS(525), + [anon_sym_TILDE] = ACTIONS(525), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(525), + [anon_sym_PIPE_PIPE] = ACTIONS(525), + [anon_sym_LT_LT] = ACTIONS(525), + [anon_sym_GT_GT] = ACTIONS(525), + [anon_sym_PLUS_EQ] = ACTIONS(525), + [anon_sym_DASH_EQ] = ACTIONS(525), + [anon_sym_STAR_EQ] = ACTIONS(525), + [anon_sym_SLASH_EQ] = ACTIONS(525), + [anon_sym_PERCENT_EQ] = ACTIONS(525), + [anon_sym_EQ_EQ] = ACTIONS(525), + [anon_sym_BANG_EQ] = ACTIONS(525), + [anon_sym_GT_EQ] = ACTIONS(525), + [anon_sym_LT_EQ] = ACTIONS(525), + [anon_sym_AT] = ACTIONS(525), + [anon_sym_DOT] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_continue] = ACTIONS(527), + [anon_sym_default] = ACTIONS(527), + [anon_sym_if] = ACTIONS(527), + [anon_sym_extern] = ACTIONS(527), + [anon_sym_loop] = ACTIONS(527), + [anon_sym_match] = ACTIONS(527), + [anon_sym_pub] = ACTIONS(527), + [anon_sym_return] = ACTIONS(527), + [anon_sym_while] = ACTIONS(527), + [sym_numeric_literal] = ACTIONS(527), + [aux_sym_string_literal_token1] = ACTIONS(525), + [sym_shortstring_literal] = ACTIONS(525), + [anon_sym_true] = ACTIONS(527), + [anon_sym_false] = ACTIONS(527), + [anon_sym_else] = ACTIONS(527), + [anon_sym_ref] = ACTIONS(527), + [sym_identifier] = ACTIONS(527), + [sym_super] = ACTIONS(527), + [sym_line_comment] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_impl] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_trait] = ACTIONS(543), + [anon_sym_type] = ACTIONS(543), + [anon_sym_const] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_POUND] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(541), + [anon_sym_mod] = ACTIONS(543), + [anon_sym_struct] = ACTIONS(543), + [anon_sym_enum] = ACTIONS(543), + [anon_sym_fn] = ACTIONS(543), + [anon_sym_let] = ACTIONS(543), + [anon_sym_use] = ACTIONS(543), + [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_u8] = ACTIONS(543), + [anon_sym_i8] = ACTIONS(543), + [anon_sym_u16] = ACTIONS(543), + [anon_sym_i16] = ACTIONS(543), + [anon_sym_u32] = ACTIONS(543), + [anon_sym_i32] = ACTIONS(543), + [anon_sym_u64] = ACTIONS(543), + [anon_sym_i64] = ACTIONS(543), + [anon_sym_u128] = ACTIONS(543), + [anon_sym_i128] = ACTIONS(543), + [anon_sym_usize] = ACTIONS(543), + [anon_sym_bool] = ACTIONS(543), + [anon_sym_ByteArray] = ACTIONS(543), + [anon_sym_felt252] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(543), + [anon_sym_CARET] = ACTIONS(541), + [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_LT_LT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(541), + [anon_sym_PLUS_EQ] = ACTIONS(541), + [anon_sym_DASH_EQ] = ACTIONS(541), + [anon_sym_STAR_EQ] = ACTIONS(541), + [anon_sym_SLASH_EQ] = ACTIONS(541), + [anon_sym_PERCENT_EQ] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_DOT] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(541), + [anon_sym_break] = ACTIONS(543), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_default] = ACTIONS(543), + [anon_sym_if] = ACTIONS(543), + [anon_sym_extern] = ACTIONS(543), + [anon_sym_loop] = ACTIONS(543), + [anon_sym_match] = ACTIONS(543), + [anon_sym_pub] = ACTIONS(543), + [anon_sym_return] = ACTIONS(543), + [anon_sym_while] = ACTIONS(543), + [sym_numeric_literal] = ACTIONS(543), + [aux_sym_string_literal_token1] = ACTIONS(541), + [sym_shortstring_literal] = ACTIONS(541), + [anon_sym_true] = ACTIONS(543), + [anon_sym_false] = ACTIONS(543), + [anon_sym_else] = ACTIONS(543), + [anon_sym_ref] = ACTIONS(543), + [sym_identifier] = ACTIONS(543), + [sym_super] = ACTIONS(543), + [sym_line_comment] = ACTIONS(3), + }, + [86] = { + [ts_builtin_sym_end] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_impl] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_trait] = ACTIONS(551), + [anon_sym_type] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(549), + [anon_sym_mod] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(551), + [anon_sym_fn] = ACTIONS(551), + [anon_sym_let] = ACTIONS(551), + [anon_sym_use] = ACTIONS(551), + [anon_sym_COLON_COLON] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u128] = ACTIONS(551), + [anon_sym_i128] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_ByteArray] = ACTIONS(551), + [anon_sym_felt252] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(551), + [anon_sym_PERCENT] = ACTIONS(551), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_PERCENT_EQ] = ACTIONS(549), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_default] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_extern] = ACTIONS(551), + [anon_sym_loop] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_pub] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [sym_numeric_literal] = ACTIONS(551), + [aux_sym_string_literal_token1] = ACTIONS(549), + [sym_shortstring_literal] = ACTIONS(549), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_ref] = ACTIONS(551), + [sym_identifier] = ACTIONS(551), + [sym_super] = ACTIONS(551), + [sym_line_comment] = ACTIONS(3), + }, + [87] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(102), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(581), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1311), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(102), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [88] = { + [ts_builtin_sym_end] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(575), + [anon_sym_impl] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(575), + [anon_sym_trait] = ACTIONS(577), + [anon_sym_type] = ACTIONS(577), + [anon_sym_const] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(575), + [anon_sym_mod] = ACTIONS(577), + [anon_sym_struct] = ACTIONS(577), + [anon_sym_enum] = ACTIONS(577), + [anon_sym_fn] = ACTIONS(577), + [anon_sym_let] = ACTIONS(577), + [anon_sym_use] = ACTIONS(577), + [anon_sym_COLON_COLON] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_u8] = ACTIONS(577), + [anon_sym_i8] = ACTIONS(577), + [anon_sym_u16] = ACTIONS(577), + [anon_sym_i16] = ACTIONS(577), + [anon_sym_u32] = ACTIONS(577), + [anon_sym_i32] = ACTIONS(577), + [anon_sym_u64] = ACTIONS(577), + [anon_sym_i64] = ACTIONS(577), + [anon_sym_u128] = ACTIONS(577), + [anon_sym_i128] = ACTIONS(577), + [anon_sym_usize] = ACTIONS(577), + [anon_sym_bool] = ACTIONS(577), + [anon_sym_ByteArray] = ACTIONS(577), + [anon_sym_felt252] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_AMP_AMP] = ACTIONS(575), + [anon_sym_PIPE_PIPE] = ACTIONS(575), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(575), + [anon_sym_DASH_EQ] = ACTIONS(575), + [anon_sym_STAR_EQ] = ACTIONS(575), + [anon_sym_SLASH_EQ] = ACTIONS(575), + [anon_sym_PERCENT_EQ] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_BANG_EQ] = ACTIONS(575), + [anon_sym_GT_EQ] = ACTIONS(575), + [anon_sym_LT_EQ] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_continue] = ACTIONS(577), + [anon_sym_default] = ACTIONS(577), + [anon_sym_if] = ACTIONS(577), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_loop] = ACTIONS(577), + [anon_sym_match] = ACTIONS(577), + [anon_sym_pub] = ACTIONS(577), + [anon_sym_return] = ACTIONS(577), + [anon_sym_while] = ACTIONS(577), + [sym_numeric_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(573), + [sym_shortstring_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(577), + [sym_identifier] = ACTIONS(577), + [sym_super] = ACTIONS(577), + [sym_line_comment] = ACTIONS(3), + }, + [89] = { + [ts_builtin_sym_end] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_impl] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_trait] = ACTIONS(583), + [anon_sym_type] = ACTIONS(583), + [anon_sym_const] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_mod] = ACTIONS(583), + [anon_sym_struct] = ACTIONS(583), + [anon_sym_enum] = ACTIONS(583), + [anon_sym_fn] = ACTIONS(583), + [anon_sym_let] = ACTIONS(583), + [anon_sym_use] = ACTIONS(583), + [anon_sym_COLON_COLON] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_u8] = ACTIONS(583), + [anon_sym_i8] = ACTIONS(583), + [anon_sym_u16] = ACTIONS(583), + [anon_sym_i16] = ACTIONS(583), + [anon_sym_u32] = ACTIONS(583), + [anon_sym_i32] = ACTIONS(583), + [anon_sym_u64] = ACTIONS(583), + [anon_sym_i64] = ACTIONS(583), + [anon_sym_u128] = ACTIONS(583), + [anon_sym_i128] = ACTIONS(583), + [anon_sym_usize] = ACTIONS(583), + [anon_sym_bool] = ACTIONS(583), + [anon_sym_ByteArray] = ACTIONS(583), + [anon_sym_felt252] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_AMP_AMP] = ACTIONS(575), + [anon_sym_PIPE_PIPE] = ACTIONS(575), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(575), + [anon_sym_DASH_EQ] = ACTIONS(575), + [anon_sym_STAR_EQ] = ACTIONS(575), + [anon_sym_SLASH_EQ] = ACTIONS(575), + [anon_sym_PERCENT_EQ] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_BANG_EQ] = ACTIONS(575), + [anon_sym_GT_EQ] = ACTIONS(575), + [anon_sym_LT_EQ] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(575), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(583), + [anon_sym_default] = ACTIONS(583), + [anon_sym_if] = ACTIONS(583), + [anon_sym_extern] = ACTIONS(583), + [anon_sym_loop] = ACTIONS(583), + [anon_sym_match] = ACTIONS(583), + [anon_sym_pub] = ACTIONS(583), + [anon_sym_return] = ACTIONS(583), + [anon_sym_while] = ACTIONS(583), + [sym_numeric_literal] = ACTIONS(583), + [aux_sym_string_literal_token1] = ACTIONS(581), + [sym_shortstring_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(583), + [anon_sym_false] = ACTIONS(583), + [anon_sym_ref] = ACTIONS(583), + [sym_identifier] = ACTIONS(583), + [sym_super] = ACTIONS(583), + [sym_line_comment] = ACTIONS(3), + }, + [90] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(105), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(577), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1287), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(105), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [91] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [92] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [93] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [94] = { + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_impl] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(575), + [anon_sym_trait] = ACTIONS(577), + [anon_sym_type] = ACTIONS(577), + [anon_sym_const] = ACTIONS(577), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(575), + [anon_sym_mod] = ACTIONS(577), + [anon_sym_struct] = ACTIONS(577), + [anon_sym_enum] = ACTIONS(577), + [anon_sym_fn] = ACTIONS(577), + [anon_sym_let] = ACTIONS(577), + [anon_sym_use] = ACTIONS(577), + [anon_sym_COLON_COLON] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_u8] = ACTIONS(577), + [anon_sym_i8] = ACTIONS(577), + [anon_sym_u16] = ACTIONS(577), + [anon_sym_i16] = ACTIONS(577), + [anon_sym_u32] = ACTIONS(577), + [anon_sym_i32] = ACTIONS(577), + [anon_sym_u64] = ACTIONS(577), + [anon_sym_i64] = ACTIONS(577), + [anon_sym_u128] = ACTIONS(577), + [anon_sym_i128] = ACTIONS(577), + [anon_sym_usize] = ACTIONS(577), + [anon_sym_bool] = ACTIONS(577), + [anon_sym_ByteArray] = ACTIONS(577), + [anon_sym_felt252] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_AMP_AMP] = ACTIONS(575), + [anon_sym_PIPE_PIPE] = ACTIONS(575), + [anon_sym_LT_LT] = ACTIONS(575), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_PLUS_EQ] = ACTIONS(575), + [anon_sym_DASH_EQ] = ACTIONS(575), + [anon_sym_STAR_EQ] = ACTIONS(575), + [anon_sym_SLASH_EQ] = ACTIONS(575), + [anon_sym_PERCENT_EQ] = ACTIONS(575), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_BANG_EQ] = ACTIONS(575), + [anon_sym_GT_EQ] = ACTIONS(575), + [anon_sym_LT_EQ] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_continue] = ACTIONS(577), + [anon_sym_default] = ACTIONS(577), + [anon_sym_if] = ACTIONS(577), + [anon_sym_extern] = ACTIONS(577), + [anon_sym_loop] = ACTIONS(577), + [anon_sym_match] = ACTIONS(577), + [anon_sym_pub] = ACTIONS(577), + [anon_sym_return] = ACTIONS(577), + [anon_sym_while] = ACTIONS(577), + [sym_numeric_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(573), + [sym_shortstring_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(577), + [anon_sym_false] = ACTIONS(577), + [anon_sym_ref] = ACTIONS(577), + [sym_identifier] = ACTIONS(577), + [sym_super] = ACTIONS(577), + [sym_line_comment] = ACTIONS(3), + }, + [95] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [96] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [97] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [98] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(103), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(528), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [99] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(575), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_u8] = ACTIONS(625), + [anon_sym_i8] = ACTIONS(625), + [anon_sym_u16] = ACTIONS(625), + [anon_sym_i16] = ACTIONS(625), + [anon_sym_u32] = ACTIONS(625), + [anon_sym_i32] = ACTIONS(625), + [anon_sym_u64] = ACTIONS(625), + [anon_sym_i64] = ACTIONS(625), + [anon_sym_u128] = ACTIONS(625), + [anon_sym_i128] = ACTIONS(625), + [anon_sym_usize] = ACTIONS(625), + [anon_sym_bool] = ACTIONS(625), + [anon_sym_ByteArray] = ACTIONS(625), + [anon_sym_felt252] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(637), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(643), + [anon_sym_match] = ACTIONS(646), + [anon_sym_return] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [sym_numeric_literal] = ACTIONS(655), + [aux_sym_string_literal_token1] = ACTIONS(658), + [sym_shortstring_literal] = ACTIONS(661), + [anon_sym_true] = ACTIONS(664), + [anon_sym_false] = ACTIONS(664), + [anon_sym_ref] = ACTIONS(667), + [sym_identifier] = ACTIONS(670), + [sym_super] = ACTIONS(673), + [sym_line_comment] = ACTIONS(3), + }, + [100] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(661), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1439), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [101] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(588), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_COLON_COLON] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_u8] = ACTIONS(625), + [anon_sym_i8] = ACTIONS(625), + [anon_sym_u16] = ACTIONS(625), + [anon_sym_i16] = ACTIONS(625), + [anon_sym_u32] = ACTIONS(625), + [anon_sym_i32] = ACTIONS(625), + [anon_sym_u64] = ACTIONS(625), + [anon_sym_i64] = ACTIONS(625), + [anon_sym_u128] = ACTIONS(625), + [anon_sym_i128] = ACTIONS(625), + [anon_sym_usize] = ACTIONS(625), + [anon_sym_bool] = ACTIONS(625), + [anon_sym_ByteArray] = ACTIONS(625), + [anon_sym_felt252] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(637), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(643), + [anon_sym_match] = ACTIONS(646), + [anon_sym_return] = ACTIONS(649), + [anon_sym_while] = ACTIONS(652), + [sym_numeric_literal] = ACTIONS(655), + [aux_sym_string_literal_token1] = ACTIONS(658), + [sym_shortstring_literal] = ACTIONS(661), + [anon_sym_true] = ACTIONS(664), + [anon_sym_false] = ACTIONS(664), + [anon_sym_ref] = ACTIONS(667), + [sym_identifier] = ACTIONS(670), + [sym_super] = ACTIONS(673), + [sym_line_comment] = ACTIONS(3), + }, + [102] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(589), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1234), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [103] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(544), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [104] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(106), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(534), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(106), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [105] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(574), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1327), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [106] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(493), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [107] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_named_argument] = STATE(1428), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [108] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [109] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [110] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [111] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [112] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [113] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(127), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(625), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(127), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [114] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [115] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(124), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(685), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(124), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [116] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [117] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [118] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1422), + [sym_let_condition] = STATE(1422), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [119] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1434), + [sym_let_condition] = STATE(1434), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [120] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(612), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [121] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1416), + [sym_let_condition] = STATE(1416), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [122] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1453), + [sym_let_condition] = STATE(1453), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [123] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(120), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(120), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [124] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(732), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [125] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1417), + [sym_let_condition] = STATE(1417), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [126] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(740), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym__condition] = STATE(1516), + [sym_let_condition] = STATE(1516), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_let] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [127] = { + [sym_macro_invocation] = STATE(467), + [sym_attribute_item] = STATE(385), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(734), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(385), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [128] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1435), + [sym_let_condition] = STATE(1435), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [129] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym__condition] = STATE(1419), + [sym_let_condition] = STATE(1419), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [130] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(604), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(137), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [131] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(687), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(132), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [132] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(675), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [133] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(635), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(134), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [134] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(604), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [135] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(660), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [136] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(675), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(135), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [137] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [138] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(735), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [aux_sym_tuple_expression_repeat1] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(737), + [anon_sym_STAR] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(745), + [anon_sym_i8] = ACTIONS(745), + [anon_sym_u16] = ACTIONS(745), + [anon_sym_i16] = ACTIONS(745), + [anon_sym_u32] = ACTIONS(745), + [anon_sym_i32] = ACTIONS(745), + [anon_sym_u64] = ACTIONS(745), + [anon_sym_i64] = ACTIONS(745), + [anon_sym_u128] = ACTIONS(745), + [anon_sym_i128] = ACTIONS(745), + [anon_sym_usize] = ACTIONS(745), + [anon_sym_bool] = ACTIONS(745), + [anon_sym_ByteArray] = ACTIONS(745), + [anon_sym_felt252] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(731), + [anon_sym_break] = ACTIONS(751), + [anon_sym_continue] = ACTIONS(754), + [anon_sym_default] = ACTIONS(757), + [anon_sym_if] = ACTIONS(760), + [anon_sym_loop] = ACTIONS(763), + [anon_sym_match] = ACTIONS(766), + [anon_sym_return] = ACTIONS(769), + [anon_sym_while] = ACTIONS(772), + [sym_numeric_literal] = ACTIONS(775), + [aux_sym_string_literal_token1] = ACTIONS(778), + [sym_shortstring_literal] = ACTIONS(781), + [anon_sym_true] = ACTIONS(784), + [anon_sym_false] = ACTIONS(784), + [anon_sym_ref] = ACTIONS(787), + [sym_identifier] = ACTIONS(790), + [sym_super] = ACTIONS(793), + [sym_line_comment] = ACTIONS(3), + }, + [139] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(423), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_mutable_specifier] = ACTIONS(796), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [140] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(746), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_mutable_specifier] = ACTIONS(798), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [141] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(423), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_mutable_specifier] = ACTIONS(800), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [142] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(755), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [143] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(702), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [144] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(737), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [145] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(698), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [146] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(440), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [147] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(486), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [148] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(483), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [149] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(466), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [150] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(464), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [151] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(454), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [152] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(447), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [153] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(697), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [154] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [155] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(446), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [156] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(425), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [157] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(441), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [158] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(706), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [159] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(428), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [160] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(696), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [161] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(751), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [162] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(756), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [163] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(715), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [164] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(728), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [165] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(758), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [166] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(759), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [167] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(760), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [168] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(451), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [169] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(714), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [170] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(762), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [171] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(683), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [172] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(707), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [173] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(699), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [174] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(757), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(255), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(255), + [sym_if_expression] = STATE(255), + [sym_match_expression] = STATE(255), + [sym_while_expression] = STATE(255), + [sym_loop_expression] = STATE(255), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(810), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [175] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(766), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [176] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(742), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(251), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(251), + [sym_if_expression] = STATE(251), + [sym_match_expression] = STATE(251), + [sym_while_expression] = STATE(251), + [sym_loop_expression] = STATE(251), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(810), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [177] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(739), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [178] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(712), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [179] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [180] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(731), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [181] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(425), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [182] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(700), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [183] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(713), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [184] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(725), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(812), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [185] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(701), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [186] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(716), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [187] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(708), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [188] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(621), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [189] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(622), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [190] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(658), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [191] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(750), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [192] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(434), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [193] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(592), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [194] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(428), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [195] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(627), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [196] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(744), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [197] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(743), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [198] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(425), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(814), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [199] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(703), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [200] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(663), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [201] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(705), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [202] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [203] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(747), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [204] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(676), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(251), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(251), + [sym_if_expression] = STATE(251), + [sym_match_expression] = STATE(251), + [sym_while_expression] = STATE(251), + [sym_loop_expression] = STATE(251), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(810), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [205] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(633), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [206] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(725), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [207] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(425), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(814), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [208] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(727), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [209] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(767), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [210] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(741), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [211] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(634), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [212] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1161), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(623), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(434), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [213] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(605), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(255), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(255), + [sym_if_expression] = STATE(255), + [sym_match_expression] = STATE(255), + [sym_while_expression] = STATE(255), + [sym_loop_expression] = STATE(255), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(810), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [214] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(765), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [215] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [216] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(752), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [217] = { + [sym_macro_invocation] = STATE(801), + [sym_generic_type_with_turbofish] = STATE(1208), + [sym__literal] = STATE(806), + [sym_negative_literal] = STATE(779), + [sym_string_literal] = STATE(779), + [sym_boolean_literal] = STATE(779), + [sym_scoped_identifier] = STATE(614), + [sym_scoped_type_identifier_in_expression_position] = STATE(1449), + [sym_expression] = STATE(754), + [sym_generic_function] = STATE(806), + [sym_tuple_expression] = STATE(806), + [sym_return_expression] = STATE(806), + [sym_struct_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_break_expression] = STATE(806), + [sym_continue_expression] = STATE(806), + [sym_index_expression] = STATE(806), + [sym_array_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_unit_expression] = STATE(806), + [sym_compound_assignment_expr] = STATE(806), + [sym__expression_ending_with_block] = STATE(806), + [sym_unary_expression] = STATE(806), + [sym_try_expression] = STATE(806), + [sym_field_expression] = STATE(717), + [sym_block] = STATE(806), + [sym_if_expression] = STATE(806), + [sym_match_expression] = STATE(806), + [sym_while_expression] = STATE(806), + [sym_loop_expression] = STATE(806), + [sym_binary_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_reference_expression] = STATE(806), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(390), + [anon_sym_i8] = ACTIONS(390), + [anon_sym_u16] = ACTIONS(390), + [anon_sym_i16] = ACTIONS(390), + [anon_sym_u32] = ACTIONS(390), + [anon_sym_i32] = ACTIONS(390), + [anon_sym_u64] = ACTIONS(390), + [anon_sym_i64] = ACTIONS(390), + [anon_sym_u128] = ACTIONS(390), + [anon_sym_i128] = ACTIONS(390), + [anon_sym_usize] = ACTIONS(390), + [anon_sym_bool] = ACTIONS(390), + [anon_sym_ByteArray] = ACTIONS(390), + [anon_sym_felt252] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_break] = ACTIONS(394), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(398), + [anon_sym_if] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(402), + [anon_sym_match] = ACTIONS(404), + [anon_sym_return] = ACTIONS(406), + [anon_sym_while] = ACTIONS(408), + [sym_numeric_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(412), + [sym_shortstring_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [anon_sym_ref] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [sym_super] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + }, + [218] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(668), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [219] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(726), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [220] = { + [sym_macro_invocation] = STATE(467), + [sym_generic_type_with_turbofish] = STATE(1242), + [sym__literal] = STATE(465), + [sym_negative_literal] = STATE(478), + [sym_string_literal] = STATE(478), + [sym_boolean_literal] = STATE(478), + [sym_scoped_identifier] = STATE(432), + [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_expression] = STATE(729), + [sym_generic_function] = STATE(465), + [sym_tuple_expression] = STATE(465), + [sym_return_expression] = STATE(465), + [sym_struct_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_break_expression] = STATE(465), + [sym_continue_expression] = STATE(465), + [sym_index_expression] = STATE(465), + [sym_array_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_unit_expression] = STATE(465), + [sym_compound_assignment_expr] = STATE(465), + [sym__expression_ending_with_block] = STATE(465), + [sym_unary_expression] = STATE(465), + [sym_try_expression] = STATE(465), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(465), + [sym_if_expression] = STATE(465), + [sym_match_expression] = STATE(465), + [sym_while_expression] = STATE(465), + [sym_loop_expression] = STATE(465), + [sym_binary_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_reference_expression] = STATE(465), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(478), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(480), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [70] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(553), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(555), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [140] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(529), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(531), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [210] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(525), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(527), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [280] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(549), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(551), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [350] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(541), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(543), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [420] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(486), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(488), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [490] = 34, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_POUND, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(820), 1, + anon_sym_COMMA, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(826), 1, + anon_sym__, + ACTIONS(828), 1, + anon_sym_RPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + STATE(340), 1, + sym_attribute_item, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1164), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [618] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(856), 1, + anon_sym_else, + STATE(254), 1, + sym_else_clause, + ACTIONS(557), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(559), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [688] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(858), 1, + anon_sym_RBRACE, + ACTIONS(860), 1, + anon_sym_impl, + ACTIONS(863), 1, + anon_sym_SEMI, + ACTIONS(866), 1, + anon_sym_trait, + ACTIONS(869), 1, + anon_sym_type, + ACTIONS(872), 1, + anon_sym_const, + ACTIONS(875), 1, + anon_sym_POUND, + ACTIONS(878), 1, + anon_sym_mod, + ACTIONS(881), 1, + anon_sym_struct, + ACTIONS(884), 1, + anon_sym_enum, + ACTIONS(887), 1, + anon_sym_fn, + ACTIONS(890), 1, + anon_sym_let, + ACTIONS(893), 1, + anon_sym_use, + ACTIONS(896), 1, + anon_sym_COLON_COLON, + ACTIONS(902), 1, + anon_sym_default, + ACTIONS(905), 1, + anon_sym_extern, + ACTIONS(908), 1, + anon_sym_pub, + ACTIONS(911), 1, + sym_identifier, + STATE(566), 1, + sym_extern_type, + STATE(858), 1, + sym_visibility_modifier, + STATE(1160), 1, + sym_extern, + STATE(1207), 1, + sym_function, + STATE(1462), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(899), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + STATE(230), 18, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [801] = 33, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_POUND, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + ACTIONS(914), 1, + anon_sym__, + ACTIONS(916), 1, + anon_sym_RPAREN, + STATE(338), 1, + sym_attribute_item, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1355), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [926] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(918), 1, + anon_sym_RBRACE, + ACTIONS(920), 1, + anon_sym_impl, + ACTIONS(922), 1, + anon_sym_SEMI, + ACTIONS(924), 1, + anon_sym_trait, + ACTIONS(926), 1, + anon_sym_type, + ACTIONS(928), 1, + anon_sym_const, + ACTIONS(930), 1, + anon_sym_POUND, + ACTIONS(932), 1, + anon_sym_mod, + ACTIONS(934), 1, + anon_sym_struct, + ACTIONS(936), 1, + anon_sym_enum, + ACTIONS(938), 1, + anon_sym_let, + ACTIONS(940), 1, + anon_sym_use, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + anon_sym_default, + ACTIONS(948), 1, + sym_identifier, + STATE(566), 1, + sym_extern_type, + STATE(858), 1, + sym_visibility_modifier, + STATE(1160), 1, + sym_extern, + STATE(1207), 1, + sym_function, + STATE(1462), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(944), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + STATE(230), 18, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [1039] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(525), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(527), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1104] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(920), 1, + anon_sym_impl, + ACTIONS(922), 1, + anon_sym_SEMI, + ACTIONS(924), 1, + anon_sym_trait, + ACTIONS(926), 1, + anon_sym_type, + ACTIONS(928), 1, + anon_sym_const, + ACTIONS(930), 1, + anon_sym_POUND, + ACTIONS(932), 1, + anon_sym_mod, + ACTIONS(934), 1, + anon_sym_struct, + ACTIONS(936), 1, + anon_sym_enum, + ACTIONS(938), 1, + anon_sym_let, + ACTIONS(940), 1, + anon_sym_use, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + anon_sym_default, + ACTIONS(948), 1, + sym_identifier, + ACTIONS(950), 1, + anon_sym_RBRACE, + STATE(566), 1, + sym_extern_type, + STATE(858), 1, + sym_visibility_modifier, + STATE(1160), 1, + sym_extern, + STATE(1207), 1, + sym_function, + STATE(1462), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(944), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + STATE(232), 18, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [1217] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(541), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(543), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1282] = 33, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_POUND, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + ACTIONS(914), 1, + anon_sym__, + ACTIONS(952), 1, + anon_sym_RPAREN, + STATE(338), 1, + sym_attribute_item, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1355), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [1407] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(541), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(543), 33, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [1472] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(549), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(551), 33, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [1537] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(525), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(527), 33, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [1602] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(920), 1, + anon_sym_impl, + ACTIONS(922), 1, + anon_sym_SEMI, + ACTIONS(924), 1, + anon_sym_trait, + ACTIONS(926), 1, + anon_sym_type, + ACTIONS(928), 1, + anon_sym_const, + ACTIONS(930), 1, + anon_sym_POUND, + ACTIONS(932), 1, + anon_sym_mod, + ACTIONS(934), 1, + anon_sym_struct, + ACTIONS(936), 1, + anon_sym_enum, + ACTIONS(938), 1, + anon_sym_let, + ACTIONS(940), 1, + anon_sym_use, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + anon_sym_default, + ACTIONS(948), 1, + sym_identifier, + ACTIONS(954), 1, + anon_sym_RBRACE, + STATE(566), 1, + sym_extern_type, + STATE(858), 1, + sym_visibility_modifier, + STATE(1160), 1, + sym_extern, + STATE(1207), 1, + sym_function, + STATE(1462), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(944), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + STATE(243), 18, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [1715] = 33, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_POUND, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + ACTIONS(914), 1, + anon_sym__, + ACTIONS(956), 1, + anon_sym_RPAREN, + STATE(338), 1, + sym_attribute_item, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1355), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [1840] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(549), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(551), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1905] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(920), 1, + anon_sym_impl, + ACTIONS(922), 1, + anon_sym_SEMI, + ACTIONS(924), 1, + anon_sym_trait, + ACTIONS(926), 1, + anon_sym_type, + ACTIONS(928), 1, + anon_sym_const, + ACTIONS(930), 1, + anon_sym_POUND, + ACTIONS(932), 1, + anon_sym_mod, + ACTIONS(934), 1, + anon_sym_struct, + ACTIONS(936), 1, + anon_sym_enum, + ACTIONS(938), 1, + anon_sym_let, + ACTIONS(940), 1, + anon_sym_use, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + anon_sym_default, + ACTIONS(948), 1, + sym_identifier, + ACTIONS(958), 1, + anon_sym_RBRACE, + STATE(566), 1, + sym_extern_type, + STATE(858), 1, + sym_visibility_modifier, + STATE(1160), 1, + sym_extern, + STATE(1207), 1, + sym_function, + STATE(1462), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(944), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + STATE(230), 18, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [2018] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(521), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(523), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2082] = 32, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_POUND, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + ACTIONS(914), 1, + anon_sym__, + STATE(338), 1, + sym_attribute_item, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1355), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [2204] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(525), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(527), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2268] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(549), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(551), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2332] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(541), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(543), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2396] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(513), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(515), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2460] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(533), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(535), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2524] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(960), 6, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(579), 8, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + ACTIONS(575), 18, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(962), 24, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2592] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(517), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(519), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2656] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(505), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(507), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2720] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(509), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(511), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2784] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(964), 6, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(579), 8, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + ACTIONS(575), 18, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(966), 24, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2852] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(545), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(547), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2916] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(537), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(539), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2980] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(968), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(970), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3043] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(972), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(974), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3106] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(976), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(978), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3169] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(980), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(982), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3232] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(984), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(986), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3295] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(988), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(990), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3358] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(992), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(994), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3421] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(996), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(998), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3484] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1000), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1002), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3547] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1004), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1006), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3610] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1008), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1010), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3673] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1012), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1014), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3736] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1016), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1018), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3799] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1020), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1022), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3862] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1024), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1026), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3925] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1028), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1030), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3988] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1032), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1034), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4051] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1036), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1038), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4114] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1040), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1042), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4177] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1044), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1046), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4240] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1048), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1050), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4303] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1052), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1054), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4366] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1056), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1058), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4429] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1060), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1062), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4492] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1064), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1066), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4555] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1068), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1070), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4618] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1072), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1074), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4681] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1076), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1078), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4744] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1080), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1082), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4807] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1084), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1086), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4870] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1088), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1090), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4933] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1092), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1094), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4996] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1096), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1098), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5059] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1100), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1102), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5122] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1104), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1106), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5185] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1108), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1110), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5248] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1112), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1114), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5311] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1116), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1118), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5374] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1120), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1122), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5437] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1124), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1126), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5500] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1128), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1130), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5563] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1132), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1134), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5626] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1136), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1138), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5689] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1140), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1142), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5752] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1144), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1146), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5815] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1148), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1150), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5878] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1152), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1154), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5941] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1156), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1158), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6004] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1160), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1162), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6067] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1164), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1166), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6130] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1168), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1170), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6193] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1172), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1174), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6256] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1176), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1178), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6319] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1180), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1182), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6382] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1184), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1186), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6445] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1188), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1190), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6508] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1192), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1194), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6571] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1198), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6634] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1202), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6697] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1204), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1206), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6760] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1208), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1210), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6823] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1212), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1214), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6886] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1218), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6949] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1220), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1222), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7012] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1224), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1226), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7075] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1228), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1230), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7138] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1232), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1234), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7201] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1236), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1238), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7264] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1240), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1242), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7327] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1244), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1246), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7390] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1248), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1250), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7453] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1252), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1254), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7516] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1256), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1258), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7579] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1260), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1262), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7642] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1264), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1266), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7705] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1268), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1270), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7768] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1272), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1274), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7831] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1276), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1278), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7894] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1280), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1282), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7957] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1284), 1, + anon_sym_RBRACE, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + STATE(1559), 1, + sym_match_pattern, + STATE(1579), 1, + sym_last_match_arm, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(342), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8073] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + ACTIONS(1318), 1, + anon_sym__, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1415), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8189] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + ACTIONS(1320), 1, + anon_sym_RBRACE, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + STATE(1559), 1, + sym_match_pattern, + STATE(1593), 1, + sym_last_match_arm, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(347), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8305] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(824), 1, + anon_sym_LPAREN, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, + anon_sym_default, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, + sym_identifier, + ACTIONS(852), 1, + sym_mutable_specifier, + ACTIONS(854), 1, + sym_super, + ACTIONS(1322), 1, + anon_sym__, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, + sym_generic_type_with_turbofish, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1315), 2, + sym_parameter, + sym__type, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(830), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8421] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + ACTIONS(1324), 1, + anon_sym_RBRACE, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1499), 1, + sym_last_match_arm, + STATE(1548), 1, + sym_generic_type, + STATE(1559), 1, + sym_match_pattern, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(344), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8537] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1535), 1, + sym_last_match_arm, + STATE(1548), 1, + sym_generic_type, + STATE(1559), 1, + sym_match_pattern, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(349), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8650] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1326), 1, + anon_sym_COMMA, + ACTIONS(1328), 1, + anon_sym_COLON_COLON, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1334), 1, + anon_sym_RPAREN, + ACTIONS(1338), 1, + anon_sym_default, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1344), 1, + sym_super, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(977), 1, + sym_scoped_identifier, + STATE(1051), 1, + sym_generic_type_with_turbofish, + STATE(1091), 1, + sym__pattern, + STATE(1148), 1, + sym_macro_invocation, + STATE(1240), 1, + sym__type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1336), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8765] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1498), 1, + sym_last_match_arm, + STATE(1548), 1, + sym_generic_type, + STATE(1559), 1, + sym_match_pattern, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(349), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8878] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1326), 1, + anon_sym_COMMA, + ACTIONS(1328), 1, + anon_sym_COLON_COLON, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1338), 1, + anon_sym_default, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1344), 1, + sym_super, + ACTIONS(1346), 1, + anon_sym_RPAREN, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(977), 1, + sym_scoped_identifier, + STATE(1051), 1, + sym_generic_type_with_turbofish, + STATE(1091), 1, + sym__pattern, + STATE(1148), 1, + sym_macro_invocation, + STATE(1240), 1, + sym__type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1336), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8993] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1348), 1, + anon_sym_RBRACK, + ACTIONS(1350), 1, + anon_sym_COMMA, + ACTIONS(1352), 1, + anon_sym_COLON_COLON, + ACTIONS(1354), 1, + anon_sym_LPAREN, + ACTIONS(1358), 1, + anon_sym_default, + ACTIONS(1360), 1, + sym_identifier, + ACTIONS(1362), 1, + sym_super, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(974), 1, + sym_scoped_identifier, + STATE(1043), 1, + sym__pattern, + STATE(1083), 1, + sym_macro_invocation, + STATE(1094), 1, + sym_generic_type_with_turbofish, + STATE(1367), 1, + sym__type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1356), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9108] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + STATE(1559), 1, + sym_match_pattern, + STATE(1562), 1, + sym_last_match_arm, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(349), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9221] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(818), 1, + anon_sym_LBRACK, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1326), 1, + anon_sym_COMMA, + ACTIONS(1328), 1, + anon_sym_COLON_COLON, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1338), 1, + anon_sym_default, + ACTIONS(1340), 1, + sym_identifier, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1344), 1, + sym_super, + ACTIONS(1364), 1, + anon_sym_RPAREN, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, + sym_negative_literal, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(977), 1, + sym_scoped_identifier, + STATE(1051), 1, + sym_generic_type_with_turbofish, + STATE(1091), 1, + sym__pattern, + STATE(1148), 1, + sym_macro_invocation, + STATE(1240), 1, + sym__type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(881), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(953), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1336), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9336] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1366), 1, + anon_sym_POUND, + ACTIONS(1369), 1, + anon_sym_LBRACK, + ACTIONS(1372), 1, + anon_sym_COLON_COLON, + ACTIONS(1375), 1, + anon_sym_LPAREN, + ACTIONS(1378), 1, + anon_sym__, + ACTIONS(1384), 1, + anon_sym_DASH, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1390), 1, + anon_sym_default, + ACTIONS(1393), 1, + sym_numeric_literal, + ACTIONS(1396), 1, + aux_sym_string_literal_token1, + ACTIONS(1399), 1, + sym_shortstring_literal, + ACTIONS(1405), 1, + sym_identifier, + ACTIONS(1408), 1, + sym_mutable_specifier, + ACTIONS(1411), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1513), 1, + sym_match_pattern, + STATE(1548), 1, + sym_generic_type, + ACTIONS(1402), 2, + anon_sym_true, + anon_sym_false, + STATE(349), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(351), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1381), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9446] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1534), 1, + sym_match_pattern, + STATE(1548), 1, + sym_generic_type, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(516), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9552] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + STATE(1571), 1, + sym_match_pattern, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(516), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9658] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1348), 1, + anon_sym_RBRACK, + ACTIONS(1350), 1, + anon_sym_COMMA, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1043), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9759] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1428), 1, + anon_sym_COMMA, + ACTIONS(1430), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1132), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9860] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1432), 1, + anon_sym_COMMA, + ACTIONS(1434), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1126), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9961] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1436), 1, + anon_sym_RBRACK, + ACTIONS(1438), 1, + anon_sym_COMMA, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1075), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10062] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1440), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1071), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10163] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1048), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10264] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1448), 1, + anon_sym_COMMA, + ACTIONS(1450), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1052), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10365] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1326), 1, + anon_sym_COMMA, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1452), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1091), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10466] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1454), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10564] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1456), 1, + anon_sym_RBRACK, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10662] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1458), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10760] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1460), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10858] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1462), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [10956] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1464), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11054] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1466), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11152] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1468), 1, + anon_sym_RBRACK, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11250] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1470), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11348] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1472), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11446] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1474), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11544] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1476), 1, + anon_sym_RBRACK, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11642] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1478), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11740] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1480), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11838] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1482), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [11936] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1484), 1, + anon_sym_RBRACK, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12034] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1486), 1, + sym_mutable_specifier, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1101), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12129] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1245), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12224] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(952), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12319] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1173), 1, + sym__pattern, + STATE(1184), 1, + sym_negative_literal, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12414] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12509] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1259), 1, + sym__pattern, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12604] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1227), 1, + sym__pattern, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12699] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(935), 1, + sym__pattern, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12794] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1341), 1, + sym__pattern, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [12889] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(611), 1, + anon_sym_POUND, + STATE(385), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(617), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1488), 29, + anon_sym_COLON, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [12946] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(929), 1, + sym__pattern, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13041] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1349), 1, + sym__pattern, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13136] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + ACTIONS(1490), 1, + sym_mutable_specifier, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1133), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13231] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1065), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13326] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1288), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_COLON_COLON, + ACTIONS(1292), 1, + anon_sym_LPAREN, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, + anon_sym_default, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, + aux_sym_string_literal_token1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, + sym_identifier, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, + sym_scoped_identifier, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1223), 1, + sym__pattern, + STATE(1408), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1190), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1224), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1296), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13421] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1381), 1, + sym__pattern, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13516] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1076), 1, + sym__pattern, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13611] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(834), 1, + anon_sym_PIPE, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, + anon_sym_COLON_COLON, + ACTIONS(1418), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_default, + ACTIONS(1424), 1, + sym_identifier, + ACTIONS(1426), 1, + sym_super, + STATE(866), 1, + sym_scoped_identifier, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1360), 1, + sym__pattern, + STATE(1395), 1, + sym_generic_type_with_turbofish, + STATE(1548), 1, + sym_generic_type, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(946), 2, + sym_string_literal, + sym_boolean_literal, + STATE(953), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1420), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13706] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1500), 1, + anon_sym_GT, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13798] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1512), 1, + anon_sym_GT, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13890] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1514), 1, + anon_sym_GT, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13982] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1516), 1, + anon_sym_GT, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14074] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1518), 1, + anon_sym_GT, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14166] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + ACTIONS(1520), 1, + anon_sym_GT, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14258] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1218), 29, + anon_sym_COLON, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [14309] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1214), 3, + sym__type, + sym__literal, + sym_block, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14398] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1387), 3, + sym__type, + sym__literal, + sym_block, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14487] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1153), 3, + sym__type, + sym__literal, + sym_block, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14576] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(832), 1, + anon_sym_DASH, + ACTIONS(842), 1, + aux_sym_string_literal_token1, + ACTIONS(854), 1, + sym_super, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(846), 2, + anon_sym_true, + anon_sym_false, + STATE(1313), 3, + sym__type, + sym__literal, + sym_block, + STATE(1372), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14665] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(743), 12, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1522), 28, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [14713] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1526), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1524), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [14758] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1530), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1528), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [14803] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1532), 1, + anon_sym_LBRACE, + ACTIONS(1534), 1, + anon_sym_BANG, + ACTIONS(1536), 1, + anon_sym_COLON_COLON, + STATE(442), 1, + sym_field_initializer_list, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [14856] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1540), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1538), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_nopanic, + [14901] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1544), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1542), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [14946] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1548), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1546), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_nopanic, + [14991] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1552), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1550), 27, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_nopanic, + [15036] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1554), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15081] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1558), 1, + anon_sym_LBRACE, + ACTIONS(1530), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1528), 24, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15127] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1560), 1, + anon_sym_else, + STATE(69), 1, + sym_else_clause, + ACTIONS(559), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(557), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15175] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1562), 1, + anon_sym_LBRACE, + ACTIONS(1556), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1554), 24, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15221] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(1526), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1524), 24, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15267] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1566), 1, + anon_sym_LBRACE, + ACTIONS(1544), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1542), 24, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15313] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1568), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15358] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1580), 1, + anon_sym_nopanic, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(975), 1, + sym__type, + STATE(1342), 1, + sym_nopanic, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(1574), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [15431] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(543), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(541), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_else, + [15474] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1588), 1, + anon_sym_BANG, + ACTIONS(1590), 1, + anon_sym_COLON_COLON, + ACTIONS(1586), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1584), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15521] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1594), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1592), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [15574] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(551), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(549), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_else, + [15617] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1606), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1604), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [15670] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1532), 1, + anon_sym_LBRACE, + ACTIONS(1534), 1, + anon_sym_BANG, + ACTIONS(1536), 1, + anon_sym_COLON_COLON, + ACTIONS(1608), 1, + anon_sym_COLON, + STATE(442), 1, + sym_field_initializer_list, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 20, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15723] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1610), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15766] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1616), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [15819] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1618), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15864] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(527), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(525), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_else, + [15907] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1622), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1620), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15950] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1534), 1, + anon_sym_BANG, + ACTIONS(1624), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [15997] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1580), 1, + anon_sym_nopanic, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(985), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1386), 1, + sym_nopanic, + ACTIONS(1626), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [16070] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1630), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1628), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [16123] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1580), 1, + anon_sym_nopanic, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(989), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1398), 1, + sym_nopanic, + ACTIONS(1632), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [16196] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1634), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16241] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1580), 1, + anon_sym_nopanic, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(978), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1433), 1, + sym_nopanic, + ACTIONS(1636), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [16314] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1640), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1638), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16356] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1644), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1642), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16398] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [16452] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1616), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1614), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [16516] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1660), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1658), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16558] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1664), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1662), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16600] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1668), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1666), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16642] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16684] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1670), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [16756] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 19, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [16812] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1684), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1682), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16854] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1688), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1686), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16896] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1692), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1690), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [16938] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1696), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1694), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [17010] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1700), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1698), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17052] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1704), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1702), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17094] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1614), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [17164] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1708), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1706), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17206] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1712), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1710), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17248] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1716), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1714), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17290] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1720), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1718), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17332] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(496), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(494), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17374] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1724), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1722), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17416] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1728), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1726), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [17488] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1732), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17530] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1736), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1734), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17572] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1614), 12, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [17640] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17682] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1614), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [17744] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17786] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1740), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1738), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17828] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1744), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1742), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17870] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1748), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1746), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17912] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1753), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1750), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17954] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1758), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1756), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [17996] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(472), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(470), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18038] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1762), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1760), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18080] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1766), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1764), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18122] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1768), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18166] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1770), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18238] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(484), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(482), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18280] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1776), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1774), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18322] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1780), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1778), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18364] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1784), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1782), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18406] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1788), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1786), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18448] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18506] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1792), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1790), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18548] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1796), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1794), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18590] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1652), 1, + anon_sym_AMP, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1614), 17, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18650] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1192), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1194), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [18691] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(992), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(994), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [18732] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1152), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1154), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [18773] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1016), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1018), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [18814] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1140), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1142), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [18855] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1798), 1, + anon_sym_LBRACE, + ACTIONS(1800), 1, + anon_sym_BANG, + ACTIONS(1802), 1, + anon_sym_COLON_COLON, + STATE(785), 1, + sym_field_initializer_list, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [18904] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(694), 1, + anon_sym_RBRACK, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1804), 1, + anon_sym_SEMI, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1808), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1304), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18983] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1218), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19024] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(988), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(990), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19065] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1024), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1026), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19106] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1160), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1162), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19147] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1272), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1274), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19188] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1148), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1150), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19229] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1068), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1070), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19270] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1256), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1258), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19311] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1184), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1186), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19352] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1198), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19393] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1040), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1042), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19434] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1132), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1134), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19475] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1116), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1118), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19516] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1180), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1182), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19557] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1076), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1078), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19598] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1164), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1166), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19639] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1072), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1074), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19680] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1236), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1238), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19721] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1048), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1050), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19762] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1252), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1254), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19803] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(980), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(982), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19844] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1188), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1190), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19885] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1812), 1, + anon_sym_POUND, + STATE(516), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + ACTIONS(1815), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1817), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [19930] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1084), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1086), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19971] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1060), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1062), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20012] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1268), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1270), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20053] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1248), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1250), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20094] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1088), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1090), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20135] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1208), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1210), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20176] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1202), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20217] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1080), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1082), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20258] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1124), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1126), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20299] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(972), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(974), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20340] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(976), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(978), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20381] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(676), 1, + anon_sym_RBRACK, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1819), 1, + anon_sym_SEMI, + ACTIONS(1821), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1206), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [20460] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1128), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1130), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20501] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1260), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1262), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20542] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1096), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1098), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20583] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1156), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1158), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20624] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1220), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1222), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20665] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(684), 1, + anon_sym_RBRACK, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1823), 1, + anon_sym_SEMI, + ACTIONS(1825), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1253), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [20744] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1264), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1266), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20785] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1120), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1122), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20826] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1204), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1206), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20867] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1144), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1146), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20908] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1112), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1114), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20949] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1008), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1010), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20990] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1172), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1174), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21031] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1280), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1282), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21072] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1176), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1178), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21113] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(706), 1, + anon_sym_RBRACK, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1827), 1, + anon_sym_SEMI, + ACTIONS(1829), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1192), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21192] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1056), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1058), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21233] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1224), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1226), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21274] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1212), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1214), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21315] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1168), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1170), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21356] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1136), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1138), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21397] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1228), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1230), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21438] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1108), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1110), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21479] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(968), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(970), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21520] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1092), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1094), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21561] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1052), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1054), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21602] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1044), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1046), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21643] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1036), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1038), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21684] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1240), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1242), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21725] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1032), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1034), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21766] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1028), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1030), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21807] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1020), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1022), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21848] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1012), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1014), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21889] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1244), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1246), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21930] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1064), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1066), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21971] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1276), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1278), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22012] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(984), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(986), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22053] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1100), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1102), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22094] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(996), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(998), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22135] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1104), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1106), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22176] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1000), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1002), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22217] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1004), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1006), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [22258] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1534), 1, + anon_sym_BANG, + ACTIONS(1831), 1, + anon_sym_COLON_COLON, + STATE(442), 1, + sym_field_initializer_list, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [22304] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1833), 1, + anon_sym_RPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(998), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [22370] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1566), 1, + anon_sym_LBRACE, + ACTIONS(1544), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1542), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [22412] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1839), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1279), 1, + aux_sym_arguments_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22488] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(690), 1, + anon_sym_RBRACK, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1841), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1332), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22564] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(1526), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1524), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [22606] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1843), 1, + anon_sym_COMMA, + ACTIONS(1845), 1, + anon_sym_RPAREN, + STATE(469), 1, + sym_arguments, + STATE(1325), 1, + aux_sym_arguments_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22682] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1562), 1, + anon_sym_LBRACE, + ACTIONS(1556), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1554), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [22724] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1857), 1, + anon_sym_GT, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [22790] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + ACTIONS(1865), 1, + anon_sym_GT, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [22856] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1867), 1, + anon_sym_COMMA, + ACTIONS(1869), 1, + anon_sym_RPAREN, + STATE(469), 1, + sym_arguments, + STATE(1233), 1, + aux_sym_arguments_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22932] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + ACTIONS(1871), 1, + anon_sym_GT, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [22998] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + ACTIONS(1873), 1, + anon_sym_GT, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [23064] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + ACTIONS(1875), 1, + anon_sym_GT, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [23130] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + ACTIONS(1877), 1, + anon_sym_RPAREN, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1240), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23196] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + ACTIONS(1879), 1, + anon_sym_GT, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [23262] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_GT, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [23328] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(688), 1, + anon_sym_RBRACK, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1883), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1268), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23404] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(593), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1885), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + STATE(1166), 1, + aux_sym_arguments_repeat1, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23480] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1558), 1, + anon_sym_LBRACE, + ACTIONS(1530), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1528), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [23522] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + ACTIONS(1887), 1, + anon_sym_RPAREN, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(998), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23588] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1889), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23659] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1264), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23722] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1891), 1, + anon_sym_RBRACE, + ACTIONS(1893), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1895), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [23763] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(883), 1, + sym__type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23826] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(1899), 1, + anon_sym_COLON_COLON, + ACTIONS(1586), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1584), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [23869] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1544), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23932] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1251), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23995] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1020), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24058] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(211), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24131] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1383), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24194] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1557), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24257] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1278), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24320] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(726), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24393] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1905), 1, + anon_sym_RBRACE, + ACTIONS(1907), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24466] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1370), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24529] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1369), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24592] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1596), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24655] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1368), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24718] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1909), 1, + anon_sym_RBRACE, + ACTIONS(1911), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1913), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [24759] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1331), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24822] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1915), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24893] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(883), 1, + sym__type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24956] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1800), 1, + anon_sym_BANG, + ACTIONS(1917), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [24999] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1339), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25062] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1530), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1528), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [25101] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1363), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25164] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1530), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1528), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25203] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1583), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25266] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1297), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25329] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1919), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25400] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25471] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1534), 1, + anon_sym_BANG, + ACTIONS(1923), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [25514] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1588), 1, + anon_sym_BANG, + ACTIONS(1925), 1, + anon_sym_COLON_COLON, + ACTIONS(1586), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1584), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [25557] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1927), 1, + anon_sym_COMMA, + ACTIONS(1929), 1, + anon_sym_RPAREN, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25630] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1931), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25703] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1933), 1, + anon_sym_LBRACE, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + STATE(80), 1, + sym_match_block, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1955), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25776] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1444), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25839] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1494), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25902] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1169), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25965] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26036] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(85), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26109] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1961), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26180] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1963), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26251] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(716), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26324] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1863), 1, + sym_identifier, + STATE(1256), 1, + sym_generic_type, + STATE(1266), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(662), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1400), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [26387] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1965), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26460] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(217), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26533] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1209), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [26596] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1490), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [26659] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1967), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26732] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1969), 1, + anon_sym_else, + STATE(775), 1, + sym_else_clause, + ACTIONS(559), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(557), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [26775] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1971), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26848] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(99), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26921] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1634), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [26962] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1568), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [27003] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1973), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27076] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1255), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27139] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27202] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1384), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27265] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1975), 1, + sym_identifier, + STATE(1106), 1, + sym_generic_type, + STATE(1109), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(669), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1222), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [27328] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1463), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27391] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1977), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27464] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(221), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27537] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1464), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27600] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1465), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27663] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(1979), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27736] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_match_block, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1955), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27809] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(87), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27882] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + ACTIONS(1983), 1, + anon_sym_RPAREN, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27955] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28026] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1987), 1, + sym_identifier, + STATE(1162), 1, + sym_generic_type, + STATE(1316), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(821), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1352), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [28089] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1989), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28160] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1548), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1546), 21, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28199] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1540), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1538), 21, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28238] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1037), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28301] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1552), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1550), 21, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28340] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1991), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28411] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1847), 1, + anon_sym_impl, + ACTIONS(1849), 1, + anon_sym_const, + ACTIONS(1851), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(1993), 1, + sym_identifier, + STATE(1072), 1, + sym_generic_type_with_turbofish, + STATE(1073), 1, + sym_generic_type, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1859), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(821), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1263), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [28474] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1554), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28513] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(998), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28576] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1526), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1524), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28615] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1544), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1542), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28654] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1380), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [28717] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(724), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28790] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1995), 1, + anon_sym_RBRACE, + ACTIONS(1997), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28863] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + ACTIONS(1999), 1, + anon_sym_RPAREN, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28936] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29009] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29080] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1367), 1, + sym__type, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29143] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(883), 1, + sym__type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29206] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + ACTIONS(2003), 1, + anon_sym_RBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29279] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2005), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_arguments, + STATE(805), 1, + sym_match_block, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1955), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29352] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1421), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29415] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2007), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RPAREN, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29488] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 8, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1218), 23, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_mutable_specifier, + sym_super, + [29527] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(720), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29600] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1405), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29663] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1526), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1524), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [29702] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(83), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29775] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1554), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [29814] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1835), 1, + anon_sym_default, + ACTIONS(1837), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(1404), 1, + sym_scoped_identifier, + STATE(1580), 1, + sym__type, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29877] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(822), 1, + anon_sym_COLON_COLON, + ACTIONS(854), 1, + sym_super, + ACTIONS(1494), 1, + anon_sym_LBRACK, + ACTIONS(1496), 1, + anon_sym_LPAREN, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, + anon_sym_default, + ACTIONS(1582), 1, + sym_identifier, + STATE(862), 1, + sym_generic_type_with_turbofish, + STATE(871), 1, + sym_generic_type, + STATE(894), 1, + sym_scoped_type_identifier, + STATE(998), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(881), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1498), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29940] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1544), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1542), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [29979] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2011), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30019] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1614), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [30077] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 15, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30129] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1614), 7, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30195] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1614), 8, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30259] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + STATE(469), 1, + sym_arguments, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1614), 12, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30317] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 13, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30371] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_AMP, + STATE(469), 1, + sym_arguments, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1614), 13, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30427] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + STATE(469), 1, + sym_arguments, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 15, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30477] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(527), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(525), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [30515] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1616), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1614), 12, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [30575] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2031), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1955), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30645] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(1616), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [30693] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1694), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30761] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1218), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [30799] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1568), 1, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30839] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1634), 1, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30879] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2033), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30949] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(1630), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1628), 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [30997] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2035), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31067] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2037), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31137] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2039), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31207] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2041), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31247] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1893), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1895), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [31285] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1772), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1770), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31353] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1670), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31421] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1726), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31489] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2043), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31529] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1610), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31567] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1622), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1620), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [31605] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(1606), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1604), 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [31653] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2045), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31723] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2047), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31793] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2049), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31863] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2051), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31933] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2053), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32003] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2055), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32073] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2057), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32143] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(551), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(549), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [32181] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2059), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32251] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32321] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(543), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(541), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [32359] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2061), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32429] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + ACTIONS(2069), 1, + anon_sym_PIPE_PIPE, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1770), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_GT, + [32497] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2073), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32567] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + ACTIONS(2069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2075), 1, + anon_sym_EQ, + ACTIONS(2079), 1, + anon_sym_EQ_GT, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2077), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32637] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2081), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32707] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2083), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32777] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2085), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32847] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2087), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32917] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + ACTIONS(2069), 1, + anon_sym_PIPE_PIPE, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1726), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_GT, + [32985] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(1594), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1592), 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33033] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2089), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33103] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1096), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1098), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [33141] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + ACTIONS(2069), 1, + anon_sym_PIPE_PIPE, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1670), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_GT, + [33209] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2091), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33279] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2093), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33349] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33401] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1901), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33471] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1614), 7, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_GT, + [33537] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1616), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1614), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_GT, + [33601] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2095), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33671] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2097), 1, + anon_sym_COMMA, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33741] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 13, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33795] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1614), 13, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33851] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, + sym_arguments, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1616), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1614), 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33901] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2099), 1, + anon_sym_RBRACK, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33971] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1616), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1614), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [34031] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2079), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_arguments, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1957), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1955), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34101] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1911), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1913), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [34139] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2031), 1, + anon_sym_EQ_GT, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + ACTIONS(2069), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2075), 1, + anon_sym_EQ, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2077), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34209] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2017), 1, + anon_sym_LPAREN, + ACTIONS(2021), 1, + anon_sym_CARET, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, + anon_sym_PIPE, + ACTIONS(2067), 1, + anon_sym_AMP_AMP, + ACTIONS(2069), 1, + anon_sym_PIPE_PIPE, + STATE(792), 1, + sym_arguments, + ACTIONS(2019), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2025), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2071), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1694), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_GT, + [34277] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1596), 1, + anon_sym_LBRACK, + ACTIONS(1598), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_DOT, + ACTIONS(1602), 1, + anon_sym_QMARK, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_PIPE, + ACTIONS(1676), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2101), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_arguments, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1680), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1810), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34347] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1644), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1642), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34384] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1788), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1786), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34421] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1684), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1682), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34458] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(519), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(517), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34495] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1736), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1734), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34532] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(523), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(521), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34569] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1732), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34606] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(511), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(509), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34643] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1704), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1702), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34680] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1712), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1710), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34717] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(472), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(470), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34754] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(484), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(482), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34791] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(507), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(505), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34828] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1758), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1756), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34865] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1776), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1774), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34902] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1692), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1690), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [34939] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2105), 1, + anon_sym_RBRACE, + ACTIONS(2107), 1, + anon_sym_COMMA, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1281), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [34994] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1660), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1658), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35031] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2119), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2121), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [35068] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1708), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1706), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35105] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1700), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1698), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35142] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(515), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(513), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35179] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1796), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1794), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35216] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1784), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1782), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35253] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1744), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1742), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35290] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(496), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(494), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35327] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1753), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1750), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35364] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1640), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1638), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35401] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1762), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1760), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35438] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1724), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1722), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35475] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(535), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(533), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35512] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1716), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1714), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35549] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1572), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1570), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35586] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35623] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1792), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1790), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35660] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1740), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1738), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35697] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1748), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1746), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35734] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(547), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(545), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35771] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(579), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(575), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35808] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(539), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(537), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35845] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1720), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1718), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35882] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1688), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1686), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35919] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1664), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1662), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35956] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1668), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1666), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [35993] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1780), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1778), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [36030] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1766), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1764), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [36067] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_RBRACE, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1401), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36119] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + ACTIONS(2125), 1, + anon_sym_RBRACE, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1401), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36171] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1401), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36220] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1522), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36269] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1575), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36318] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1572), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36367] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2111), 1, + anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_default, + ACTIONS(2117), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + STATE(1519), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2113), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36416] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2127), 1, + anon_sym_POUND, + STATE(821), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(617), 3, + anon_sym_COLON_COLON, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1488), 19, + anon_sym_impl, + anon_sym_const, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_identifier, + sym_super, + [36453] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 4, + anon_sym_POUND, + anon_sym_COLON_COLON, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1218), 19, + anon_sym_impl, + anon_sym_const, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_identifier, + sym_super, + [36484] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + ACTIONS(1861), 1, + anon_sym_default, + ACTIONS(2130), 1, + sym_identifier, + STATE(1258), 1, + sym_generic_type, + STATE(1260), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, + sym_scoped_type_identifier, + STATE(1503), 1, + sym_scoped_identifier, + ACTIONS(1855), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36526] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1484), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36565] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1523), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36604] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1505), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36643] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + STATE(1592), 1, + sym_attribute, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36682] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1507), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36721] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1479), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36760] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1533), 1, + sym_generic_type_with_turbofish, + STATE(1536), 1, + sym_attribute, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36799] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1475), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36838] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1472), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36877] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1492), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36916] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(942), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_default, + ACTIONS(2136), 1, + sym_identifier, + STATE(968), 1, + sym_scoped_identifier, + STATE(1502), 1, + sym_attribute, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36955] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2138), 1, + anon_sym_COLON_COLON, + ACTIONS(2142), 1, + anon_sym_default, + ACTIONS(2144), 1, + sym_identifier, + STATE(1338), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + ACTIONS(2140), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36991] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2138), 1, + anon_sym_COLON_COLON, + ACTIONS(2148), 1, + anon_sym_default, + ACTIONS(2150), 1, + sym_identifier, + STATE(1375), 1, + sym_scoped_identifier, + STATE(1518), 1, + sym_generic_type_with_turbofish, + ACTIONS(2146), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [37027] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1544), 1, + anon_sym_COLON, + ACTIONS(1542), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2152), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + anon_sym_LT2, + [37053] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1526), 1, + anon_sym_COLON, + ACTIONS(1524), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2154), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + anon_sym_LT2, + [37079] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 1, + anon_sym_COLON, + ACTIONS(1554), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2156), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + anon_sym_LT2, + [37105] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1530), 1, + anon_sym_COLON, + ACTIONS(1528), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2158), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + anon_sym_LT2, + [37131] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2168), 1, + anon_sym_COLON_COLON, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2162), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [37165] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 1, + anon_sym_COLON, + ACTIONS(2156), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1554), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37188] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 1, + anon_sym_COLON, + ACTIONS(1554), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37209] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1526), 1, + anon_sym_COLON, + ACTIONS(2154), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1524), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37232] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1544), 1, + anon_sym_COLON, + ACTIONS(2152), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1542), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37255] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1530), 1, + anon_sym_COLON, + ACTIONS(1528), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37276] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1530), 1, + anon_sym_COLON, + ACTIONS(2158), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1528), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37299] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1544), 1, + anon_sym_COLON, + ACTIONS(1542), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37320] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1526), 1, + anon_sym_COLON, + ACTIONS(1524), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + [37341] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1568), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37359] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(478), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + [37377] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2176), 1, + anon_sym_COLON, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2180), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + ACTIONS(2174), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [37405] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(486), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + [37423] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(529), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + [37441] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2182), 1, + anon_sym_impl, + ACTIONS(2184), 1, + anon_sym_trait, + ACTIONS(2186), 1, + anon_sym_type, + ACTIONS(2188), 1, + anon_sym_const, + ACTIONS(2190), 1, + anon_sym_mod, + ACTIONS(2192), 1, + anon_sym_struct, + ACTIONS(2194), 1, + anon_sym_enum, + ACTIONS(2196), 1, + anon_sym_fn, + ACTIONS(2198), 1, + anon_sym_use, + ACTIONS(2200), 1, + anon_sym_extern, + STATE(1185), 1, + sym_function, + STATE(1198), 1, + sym_extern, + [37481] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1634), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37499] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(553), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + [37517] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2196), 1, + anon_sym_fn, + ACTIONS(2200), 1, + anon_sym_extern, + ACTIONS(2202), 1, + anon_sym_impl, + ACTIONS(2204), 1, + anon_sym_trait, + ACTIONS(2206), 1, + anon_sym_type, + ACTIONS(2208), 1, + anon_sym_const, + ACTIONS(2210), 1, + anon_sym_mod, + ACTIONS(2212), 1, + anon_sym_struct, + ACTIONS(2214), 1, + anon_sym_enum, + ACTIONS(2216), 1, + anon_sym_use, + STATE(1179), 1, + sym_extern, + STATE(1244), 1, + sym_function, + [37557] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2218), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37575] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2220), 1, + anon_sym_RBRACK, + ACTIONS(2152), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1542), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37596] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2223), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37613] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2227), 1, + anon_sym_COLON_COLON, + ACTIONS(2225), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37632] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2231), 1, + anon_sym_LPAREN, + ACTIONS(2229), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [37651] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2233), 1, + anon_sym_RBRACE, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + anon_sym_COMMA, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1283), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [37682] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2245), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37699] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2247), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [37724] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2249), 1, + anon_sym_RBRACK, + ACTIONS(2154), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1524), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37745] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2254), 1, + anon_sym_COLON_COLON, + ACTIONS(2252), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37764] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2156), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + anon_sym_LT2, + [37781] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2256), 1, + anon_sym_RBRACE, + ACTIONS(2258), 1, + anon_sym_COMMA, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1319), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [37812] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + ACTIONS(2225), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37831] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2262), 1, + anon_sym_RBRACK, + ACTIONS(2156), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1554), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37852] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2265), 1, + anon_sym_RBRACK, + ACTIONS(2158), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1528), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37873] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2268), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37890] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2270), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [37906] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2272), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [37922] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2274), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [37938] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2276), 1, + anon_sym_RBRACE, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [37966] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2278), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [37982] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2280), 1, + anon_sym_RBRACE, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2284), 1, + anon_sym_COMMA, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + STATE(1307), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(920), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38014] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2225), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38030] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2292), 1, + anon_sym_BANG, + ACTIONS(2294), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2290), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [38054] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2296), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38070] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2298), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38086] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2300), 1, + anon_sym_RBRACE, + ACTIONS(2302), 1, + anon_sym_COMMA, + STATE(1181), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(913), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38118] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2304), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38134] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2306), 1, + anon_sym_RBRACE, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38162] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2308), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38178] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2294), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2290), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38210] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2310), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38226] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2312), 1, + anon_sym_RBRACE, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38254] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2314), 1, + anon_sym_RBRACE, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38282] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2290), 1, + anon_sym_SEMI, + ACTIONS(2316), 1, + anon_sym_RBRACK, + ACTIONS(2319), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2162), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [38314] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(874), 1, + sym_type_arguments, + ACTIONS(2225), 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_nopanic, + [38334] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2321), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38350] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2323), 1, + anon_sym_LBRACE, + ACTIONS(2325), 1, + anon_sym_BANG, + ACTIONS(2327), 1, + anon_sym_COLON_COLON, + ACTIONS(2329), 1, + anon_sym_LPAREN, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2162), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [38377] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2160), 1, + anon_sym_LBRACE, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2331), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2316), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38406] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(494), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + [38421] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_RBRACE, + ACTIONS(2335), 1, + anon_sym_COMMA, + ACTIONS(2337), 1, + sym_identifier, + STATE(1306), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(961), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38450] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(470), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + [38465] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2294), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2290), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_nopanic, + [38488] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2339), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38517] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2341), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38546] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38575] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2345), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, + anon_sym_COMMA, + STATE(1188), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(971), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38604] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2349), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38633] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2351), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38662] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(474), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + [38677] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, + sym_identifier, + STATE(1006), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38702] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2353), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38721] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2355), 1, + anon_sym_RBRACE, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38750] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2357), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38764] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + STATE(1298), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38790] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2359), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38804] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2361), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38818] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2363), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38832] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2365), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38846] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2367), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38860] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2369), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38886] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + STATE(1301), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38912] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2156), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2262), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1554), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [38930] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2371), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38944] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2373), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38958] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2154), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2249), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1524), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [38976] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2375), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38990] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2158), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2265), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1528), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [39008] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2377), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39022] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2379), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39048] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2381), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39062] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2152), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2220), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1542), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [39080] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2383), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39094] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2385), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39108] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2387), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39122] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2389), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39136] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2391), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39150] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2393), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39176] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2395), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39190] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2397), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39216] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2399), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39230] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(947), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39256] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2401), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39270] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2403), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39284] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2405), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39310] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2407), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39324] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2409), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39338] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2409), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39352] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + STATE(1418), 1, + sym_enum_variant, + STATE(1443), 1, + sym_field_declaration, + STATE(1500), 1, + sym_visibility_modifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39378] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2411), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39404] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2413), 1, + anon_sym_COLON_COLON, + ACTIONS(2415), 1, + anon_sym_LT2, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2290), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [39426] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2417), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39440] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2419), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39454] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2421), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39468] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39482] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2423), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39496] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2425), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39510] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2427), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39524] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(874), 1, + sym_type_arguments, + ACTIONS(2225), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [39543] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, + anon_sym_RBRACK, + ACTIONS(2439), 1, + anon_sym_COLON_COLON, + ACTIONS(2441), 1, + anon_sym_LPAREN, + STATE(1477), 1, + sym_delim_token_tree, + [39568] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2443), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + ACTIONS(2174), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39589] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2445), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + ACTIONS(2174), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [39610] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + STATE(1334), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39633] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2447), 1, + anon_sym_BANG, + ACTIONS(2449), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + ACTIONS(2174), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39654] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + STATE(1359), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(970), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39677] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2451), 1, + anon_sym_STAR, + STATE(859), 1, + sym_type_arguments, + STATE(1219), 1, + sym_use_list, + ACTIONS(2453), 2, + sym_identifier, + sym_super, + [39700] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, + anon_sym_RBRACK, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2455), 1, + anon_sym_COLON_COLON, + STATE(1477), 1, + sym_delim_token_tree, + [39725] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2459), 1, + anon_sym_RBRACK, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + STATE(1478), 1, + sym_delim_token_tree, + [39750] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2463), 1, + anon_sym_STAR, + STATE(856), 1, + sym_type_arguments, + STATE(1205), 1, + sym_use_list, + ACTIONS(2465), 2, + sym_identifier, + sym_super, + [39773] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2433), 1, + anon_sym_EQ, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, + anon_sym_RBRACK, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2467), 1, + anon_sym_COLON_COLON, + STATE(1477), 1, + sym_delim_token_tree, + [39798] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2463), 1, + anon_sym_STAR, + STATE(850), 1, + sym_type_arguments, + STATE(1205), 1, + sym_use_list, + ACTIONS(2465), 2, + sym_identifier, + sym_super, + [39821] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + STATE(1425), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39844] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + STATE(1286), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39867] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1554), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39879] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2471), 1, + anon_sym_DASH_GT, + ACTIONS(2473), 1, + anon_sym_implicits, + ACTIONS(2475), 1, + anon_sym_nopanic, + STATE(1438), 1, + sym_nopanic, + ACTIONS(2469), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39899] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2477), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [39917] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(980), 1, + aux_sym_function_repeat1, + STATE(1385), 1, + sym_nopanic, + ACTIONS(2479), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39937] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(997), 1, + aux_sym_function_repeat1, + STATE(1357), 1, + sym_nopanic, + ACTIONS(2483), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39957] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2485), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39975] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_function_repeat1, + STATE(1348), 1, + sym_nopanic, + ACTIONS(2487), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39995] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(997), 1, + aux_sym_function_repeat1, + STATE(1346), 1, + sym_nopanic, + ACTIONS(2489), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40015] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(997), 1, + aux_sym_function_repeat1, + STATE(1396), 1, + sym_nopanic, + ACTIONS(2491), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40035] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2493), 1, + anon_sym_COMMA, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + ACTIONS(2497), 1, + anon_sym_GT, + STATE(865), 1, + sym_type_arguments, + STATE(1261), 1, + aux_sym_type_parameters_repeat1, + [40057] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1528), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40069] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1524), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40081] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + STATE(874), 1, + sym_type_arguments, + ACTIONS(2225), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [40097] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_function_repeat1, + STATE(1388), 1, + sym_nopanic, + ACTIONS(2499), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40117] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(997), 1, + aux_sym_function_repeat1, + STATE(1436), 1, + sym_nopanic, + ACTIONS(2501), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40137] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1542), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40149] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2325), 1, + anon_sym_BANG, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40167] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(979), 1, + aux_sym_function_repeat1, + STATE(1362), 1, + sym_nopanic, + ACTIONS(2505), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40187] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2174), 1, + anon_sym_PIPE, + ACTIONS(2176), 1, + anon_sym_COLON, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2507), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + [40209] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2511), 1, + anon_sym_DASH_GT, + ACTIONS(2513), 1, + anon_sym_implicits, + STATE(1420), 1, + sym_nopanic, + ACTIONS(2509), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40229] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2517), 1, + anon_sym_GT, + STATE(865), 1, + sym_type_arguments, + STATE(1288), 1, + aux_sym_type_parameters_repeat1, + [40251] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2521), 1, + anon_sym_COLON_COLON, + ACTIONS(2523), 1, + anon_sym_as, + ACTIONS(2519), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40266] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2525), 1, + anon_sym_RBRACE, + ACTIONS(2527), 1, + anon_sym_COMMA, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + STATE(1196), 1, + sym_field_pattern, + [40285] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2533), 1, + anon_sym_POUND, + ACTIONS(1488), 2, + anon_sym_pub, + sym_identifier, + STATE(995), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40300] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2536), 1, + anon_sym_RBRACE, + ACTIONS(2538), 1, + anon_sym_COMMA, + STATE(1238), 1, + sym_field_pattern, + [40319] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2542), 1, + anon_sym_COMMA, + STATE(997), 1, + aux_sym_function_repeat1, + ACTIONS(2540), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_nopanic, + [40334] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2540), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_nopanic, + [40345] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(2547), 1, + anon_sym_SEMI, + ACTIONS(2549), 1, + anon_sym_LT, + STATE(525), 1, + sym_declaration_list, + STATE(1328), 1, + sym_type_parameters, + [40364] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2551), 2, + anon_sym_COMMA, + anon_sym_GT, + [40381] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2555), 1, + anon_sym_COMMA, + STATE(1314), 1, + sym_field_pattern, + [40400] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2557), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40411] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2559), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40422] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2561), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40433] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2523), 1, + anon_sym_as, + ACTIONS(2563), 1, + anon_sym_COLON_COLON, + ACTIONS(2519), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40448] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2565), 1, + sym_numeric_literal, + ACTIONS(2567), 1, + sym_identifier, + STATE(1015), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40465] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(2571), 1, + anon_sym_SEMI, + STATE(297), 1, + sym_declaration_list, + STATE(1235), 1, + sym_type_parameters, + [40484] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2575), 1, + anon_sym_COLON_COLON, + ACTIONS(2577), 1, + anon_sym_as, + ACTIONS(2573), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40499] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2579), 1, + anon_sym_LBRACE, + ACTIONS(2581), 1, + anon_sym_SEMI, + STATE(265), 1, + sym_field_declaration_list, + STATE(1237), 1, + sym_type_parameters, + [40518] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2583), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40529] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2523), 1, + anon_sym_as, + ACTIONS(2585), 1, + anon_sym_COLON_COLON, + ACTIONS(2519), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40544] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2587), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40555] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2170), 1, + anon_sym_LPAREN, + ACTIONS(2589), 1, + anon_sym_COLON_COLON, + [40574] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2591), 1, + anon_sym_COMMA, + ACTIONS(2593), 1, + anon_sym_RPAREN, + STATE(1309), 1, + aux_sym_parameters_repeat1, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40591] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2595), 1, + anon_sym_POUND, + ACTIONS(1488), 2, + sym_numeric_literal, + sym_identifier, + STATE(1015), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40606] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2598), 1, + anon_sym_RBRACE, + ACTIONS(2600), 1, + anon_sym_COMMA, + STATE(1317), 1, + sym_field_pattern, + [40625] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2602), 2, + anon_sym_COMMA, + anon_sym_GT, + [40642] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2254), 1, + anon_sym_COLON_COLON, + ACTIONS(2252), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40659] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2579), 1, + anon_sym_LBRACE, + ACTIONS(2604), 1, + anon_sym_SEMI, + STATE(296), 1, + sym_field_declaration_list, + STATE(1211), 1, + sym_type_parameters, + [40678] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2608), 1, + anon_sym_implicits, + STATE(1394), 1, + sym_nopanic, + ACTIONS(2606), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40695] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2610), 1, + anon_sym_LBRACE, + ACTIONS(2612), 1, + anon_sym_SEMI, + STATE(567), 1, + sym_field_declaration_list, + STATE(1329), 1, + sym_type_parameters, + [40714] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1546), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40725] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2614), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40736] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2616), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40747] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2618), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40758] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2620), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40769] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(2622), 1, + anon_sym_SEMI, + STATE(326), 1, + sym_declaration_list, + STATE(1199), 1, + sym_type_parameters, + [40788] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2624), 1, + anon_sym_SEMI, + STATE(557), 1, + sym_declaration_list, + STATE(1249), 1, + sym_type_parameters, + [40807] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40818] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2628), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40829] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2610), 1, + anon_sym_LBRACE, + ACTIONS(2630), 1, + anon_sym_SEMI, + STATE(536), 1, + sym_field_declaration_list, + STATE(1257), 1, + sym_type_parameters, + [40848] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2463), 1, + anon_sym_STAR, + STATE(1205), 1, + sym_use_list, + ACTIONS(2465), 2, + sym_identifier, + sym_super, + [40865] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2632), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40876] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2634), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40887] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2252), 1, + anon_sym_SEMI, + ACTIONS(2636), 1, + anon_sym_RBRACK, + ACTIONS(2639), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [40904] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2641), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40915] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2645), 1, + anon_sym_implicits, + STATE(1378), 1, + sym_nopanic, + ACTIONS(2643), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40932] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + STATE(865), 1, + sym_type_arguments, + ACTIONS(2647), 2, + anon_sym_COMMA, + anon_sym_GT, + [40949] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2649), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40960] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(952), 1, + anon_sym_RPAREN, + ACTIONS(2651), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_parameters_repeat1, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40977] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1538), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40988] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1550), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40999] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2653), 1, + anon_sym_RBRACK, + ACTIONS(2655), 1, + anon_sym_COMMA, + ACTIONS(2657), 1, + anon_sym_PIPE, + STATE(1158), 1, + aux_sym_tuple_pattern_repeat1, + [41015] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2227), 1, + anon_sym_COLON_COLON, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2225), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41029] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2663), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(2661), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + [41043] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(2666), 1, + anon_sym_if, + STATE(771), 2, + sym_block, + sym_if_expression, + [41057] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2661), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [41069] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2668), 1, + anon_sym_COMMA, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(1285), 1, + aux_sym_tuple_pattern_repeat1, + [41085] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2672), 1, + anon_sym_of, + ACTIONS(2674), 1, + anon_sym_EQ, + STATE(1340), 1, + sym_type_parameters, + [41101] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2676), 1, + anon_sym_of, + ACTIONS(2678), 1, + anon_sym_EQ, + STATE(1343), 1, + sym_type_parameters, + [41117] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2680), 1, + anon_sym_COLON_COLON, + ACTIONS(2225), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41131] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2682), 1, + anon_sym_COMMA, + ACTIONS(2684), 1, + anon_sym_RPAREN, + STATE(1293), 1, + aux_sym_tuple_pattern_repeat1, + [41147] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2686), 1, + anon_sym_of, + ACTIONS(2688), 1, + anon_sym_EQ, + STATE(1374), 1, + sym_type_parameters, + [41163] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2507), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + [41179] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2690), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [41195] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2274), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2371), 2, + anon_sym_COLON, + anon_sym_PIPE, + [41207] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2692), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + [41223] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_enum_variant_list, + STATE(1347), 1, + sym_type_parameters, + [41239] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2696), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_enum_variant_list, + STATE(1373), 1, + sym_type_parameters, + [41255] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2698), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [41271] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(2702), 1, + sym_super, + STATE(850), 1, + sym_type_arguments, + [41287] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2507), 1, + anon_sym_COLON_COLON, + ACTIONS(2704), 1, + anon_sym_BANG, + STATE(861), 1, + sym_type_arguments, + [41303] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(2702), 1, + sym_super, + STATE(850), 1, + sym_type_arguments, + [41319] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(859), 1, + sym_type_arguments, + ACTIONS(2453), 2, + sym_identifier, + sym_super, + [41333] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2381), 1, + anon_sym_PIPE, + ACTIONS(2706), 1, + anon_sym_SEMI, + ACTIONS(2708), 1, + anon_sym_COLON, + ACTIONS(2710), 1, + anon_sym_EQ, + [41349] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(856), 1, + sym_type_arguments, + ACTIONS(2465), 2, + sym_identifier, + sym_super, + [41363] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(2702), 1, + sym_super, + STATE(856), 1, + sym_type_arguments, + [41379] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_super, + STATE(859), 1, + sym_type_arguments, + [41395] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2716), 1, + sym_identifier, + STATE(850), 1, + sym_type_arguments, + [41411] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(2702), 1, + sym_super, + STATE(856), 1, + sym_type_arguments, + [41427] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2718), 1, + anon_sym_COMMA, + ACTIONS(2720), 1, + anon_sym_RPAREN, + STATE(1312), 1, + aux_sym_tuple_pattern_repeat1, + [41443] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1873), 1, + anon_sym_GT, + ACTIONS(2722), 1, + anon_sym_COMMA, + ACTIONS(2724), 1, + anon_sym_COLON_COLON, + STATE(1290), 1, + aux_sym_type_parameters_repeat1, + [41459] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1873), 1, + anon_sym_GT, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + ACTIONS(2722), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_type_parameters_repeat1, + [41475] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2726), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [41491] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2728), 1, + anon_sym_RBRACK, + ACTIONS(2730), 1, + anon_sym_COMMA, + STATE(1310), 1, + aux_sym_tuple_pattern_repeat1, + [41507] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2381), 1, + anon_sym_PIPE, + ACTIONS(2732), 1, + anon_sym_SEMI, + ACTIONS(2734), 1, + anon_sym_COLON, + ACTIONS(2736), 1, + anon_sym_EQ, + [41523] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(850), 1, + sym_type_arguments, + ACTIONS(2465), 2, + sym_identifier, + sym_super, + [41537] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2738), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [41553] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(2714), 1, + sym_super, + STATE(859), 1, + sym_type_arguments, + [41569] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2716), 1, + sym_identifier, + STATE(856), 1, + sym_type_arguments, + [41585] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2740), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [41601] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41613] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2225), 1, + anon_sym_SEMI, + ACTIONS(2744), 1, + anon_sym_RBRACK, + ACTIONS(2162), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [41627] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2714), 1, + sym_super, + ACTIONS(2747), 1, + sym_identifier, + STATE(859), 1, + sym_type_arguments, + [41643] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2749), 1, + sym_identifier, + STATE(710), 1, + sym_type_arguments, + [41659] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2751), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [41675] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2749), 1, + sym_identifier, + STATE(711), 1, + sym_type_arguments, + [41691] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2753), 1, + anon_sym_of, + ACTIONS(2755), 1, + anon_sym_EQ, + STATE(1468), 1, + sym_type_parameters, + [41707] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, + anon_sym_LPAREN, + STATE(854), 1, + sym_delim_token_tree, + [41723] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2755), 1, + anon_sym_EQ, + ACTIONS(2763), 1, + anon_sym_SEMI, + STATE(1467), 1, + sym_type_parameters, + [41739] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2765), 1, + anon_sym_COMMA, + ACTIONS(2767), 1, + anon_sym_RPAREN, + STATE(1155), 1, + aux_sym_tuple_pattern_repeat1, + [41755] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2769), 1, + anon_sym_if, + STATE(71), 2, + sym_block, + sym_if_expression, + [41769] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2771), 1, + anon_sym_LBRACE, + ACTIONS(2773), 1, + anon_sym_LBRACK, + ACTIONS(2775), 1, + anon_sym_LPAREN, + STATE(222), 1, + sym_delim_token_tree, + [41785] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2777), 1, + anon_sym_COLON_COLON, + ACTIONS(2225), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [41799] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2779), 1, + sym_identifier, + ACTIONS(2781), 1, + sym_super, + STATE(859), 1, + sym_type_arguments, + [41815] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2771), 1, + anon_sym_LBRACE, + ACTIONS(2773), 1, + anon_sym_LBRACK, + ACTIONS(2775), 1, + anon_sym_LPAREN, + STATE(223), 1, + sym_delim_token_tree, + [41831] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2453), 1, + sym_super, + ACTIONS(2783), 1, + sym_identifier, + STATE(859), 1, + sym_type_arguments, + [41847] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, + anon_sym_LPAREN, + STATE(857), 1, + sym_delim_token_tree, + [41863] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2785), 1, + anon_sym_LT2, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2789), 1, + sym_super, + STATE(645), 1, + sym_type_arguments, + [41879] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2785), 1, + anon_sym_LT2, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2789), 1, + sym_super, + STATE(646), 1, + sym_type_arguments, + [41895] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2791), 1, + anon_sym_SEMI, + ACTIONS(2793), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_EQ, + [41911] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2453), 1, + sym_super, + ACTIONS(2747), 1, + sym_identifier, + STATE(859), 1, + sym_type_arguments, + [41927] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2696), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_enum_variant_list, + STATE(1440), 1, + sym_type_parameters, + [41943] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2797), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41955] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2716), 1, + sym_identifier, + STATE(856), 1, + sym_type_arguments, + [41971] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, + anon_sym_GT, + STATE(1262), 1, + aux_sym_type_parameters_repeat1, + [41987] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2803), 1, + anon_sym_if, + STATE(71), 2, + sym_block, + sym_if_expression, + [42001] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(539), 1, + sym_enum_variant_list, + STATE(1397), 1, + sym_type_parameters, + [42017] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2724), 1, + anon_sym_COLON_COLON, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, + anon_sym_GT, + STATE(1262), 1, + aux_sym_type_parameters_repeat1, + [42033] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2716), 1, + sym_identifier, + STATE(850), 1, + sym_type_arguments, + [42049] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2678), 1, + anon_sym_EQ, + ACTIONS(2805), 1, + anon_sym_SEMI, + STATE(1403), 1, + sym_type_parameters, + [42065] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACE, + ACTIONS(2807), 1, + anon_sym_if, + STATE(252), 2, + sym_block, + sym_if_expression, + [42079] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2809), 1, + anon_sym_LBRACE, + ACTIONS(2811), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_LPAREN, + STATE(1167), 1, + sym_delim_token_tree, + [42095] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2809), 1, + anon_sym_LBRACE, + ACTIONS(2811), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_LPAREN, + STATE(1171), 1, + sym_delim_token_tree, + [42111] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2817), 1, + sym_super, + STATE(859), 1, + sym_type_arguments, + [42127] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2821), 1, + sym_super, + STATE(856), 1, + sym_type_arguments, + [42143] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2821), 1, + sym_super, + STATE(850), 1, + sym_type_arguments, + [42159] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(859), 1, + sym_type_arguments, + ACTIONS(2714), 2, + sym_identifier, + sym_super, + [42173] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2714), 1, + sym_super, + ACTIONS(2815), 1, + sym_identifier, + STATE(859), 1, + sym_type_arguments, + [42189] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(856), 1, + sym_type_arguments, + ACTIONS(2702), 2, + sym_identifier, + sym_super, + [42203] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2823), 1, + anon_sym_LPAREN, + STATE(991), 1, + sym_parameters, + STATE(1437), 1, + sym_type_parameters, + [42219] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(850), 1, + sym_type_arguments, + ACTIONS(2702), 2, + sym_identifier, + sym_super, + [42233] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2274), 1, + anon_sym_SEMI, + ACTIONS(2825), 1, + anon_sym_RBRACK, + ACTIONS(2371), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42247] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2819), 1, + sym_identifier, + STATE(856), 1, + sym_type_arguments, + [42263] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2819), 1, + sym_identifier, + STATE(850), 1, + sym_type_arguments, + [42279] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2828), 1, + anon_sym_COMMA, + ACTIONS(2830), 1, + anon_sym_RPAREN, + STATE(1176), 1, + aux_sym_tuple_pattern_repeat1, + [42295] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2714), 1, + sym_super, + ACTIONS(2832), 1, + sym_identifier, + STATE(859), 1, + sym_type_arguments, + [42311] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2834), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [42327] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2836), 1, + sym_identifier, + STATE(856), 1, + sym_type_arguments, + [42343] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2836), 1, + sym_identifier, + STATE(850), 1, + sym_type_arguments, + [42359] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2838), 1, + sym_identifier, + STATE(419), 1, + sym_type_arguments, + [42375] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2840), 1, + anon_sym_COMMA, + ACTIONS(2842), 1, + anon_sym_RPAREN, + STATE(1180), 1, + aux_sym_tuple_pattern_repeat1, + [42391] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(2844), 1, + anon_sym_SEMI, + ACTIONS(2846), 1, + anon_sym_COLON, + ACTIONS(2848), 1, + anon_sym_EQ, + [42407] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2838), 1, + sym_identifier, + STATE(436), 1, + sym_type_arguments, + [42423] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_delim_token_tree, + [42439] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2850), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42451] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_LBRACE, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2441), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_delim_token_tree, + [42467] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2225), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42479] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2103), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_use_list, + ACTIONS(2852), 2, + sym_identifier, + sym_super, + [42493] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2453), 1, + sym_super, + ACTIONS(2854), 1, + sym_identifier, + STATE(859), 1, + sym_type_arguments, + [42509] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2856), 1, + anon_sym_COLON_COLON, + ACTIONS(2636), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42523] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2858), 1, + anon_sym_RBRACE, + STATE(1399), 1, + sym_field_pattern, + [42539] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2423), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42548] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2860), 1, + anon_sym_SEMI, + STATE(1495), 1, + sym_type_parameters, + [42561] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(874), 1, + sym_type_arguments, + [42574] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2864), 1, + anon_sym_COLON, + ACTIONS(2862), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [42585] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 1, + anon_sym_POUND, + ACTIONS(1218), 2, + sym_numeric_literal, + sym_identifier, + [42596] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2744), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42607] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2858), 1, + anon_sym_RBRACE, + ACTIONS(2866), 1, + anon_sym_COMMA, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [42620] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2868), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [42629] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2870), 1, + anon_sym_in, + ACTIONS(2872), 2, + sym_super, + sym_crate, + [42640] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2874), 1, + anon_sym_RBRACE, + ACTIONS(2876), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_use_list_repeat1, + [42653] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2879), 1, + anon_sym_COMMA, + ACTIONS(2881), 1, + anon_sym_GT, + STATE(1174), 1, + aux_sym_type_arguments_repeat1, + [42666] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2883), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [42675] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1482), 1, + anon_sym_RPAREN, + ACTIONS(2885), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [42688] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2371), 1, + anon_sym_PIPE, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42699] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2887), 1, + anon_sym_LBRACE, + STATE(874), 1, + sym_type_arguments, + [42712] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1468), 1, + anon_sym_RBRACK, + ACTIONS(2889), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [42725] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2891), 1, + anon_sym_RBRACE, + ACTIONS(2893), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_field_initializer_list_repeat1, + [42738] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2196), 1, + anon_sym_fn, + ACTIONS(2896), 1, + anon_sym_type, + STATE(1532), 1, + sym_function, + [42751] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1532), 1, + anon_sym_LBRACE, + ACTIONS(2898), 1, + anon_sym_COLON_COLON, + STATE(450), 1, + sym_field_initializer_list, + [42764] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + ACTIONS(2900), 2, + anon_sym_COMMA, + anon_sym_GT, + [42775] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(470), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42784] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2591), 1, + anon_sym_COMMA, + ACTIONS(2593), 1, + anon_sym_RPAREN, + STATE(1309), 1, + aux_sym_parameters_repeat1, + [42797] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1959), 1, + anon_sym_RPAREN, + ACTIONS(2902), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_arguments_repeat1, + [42810] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(595), 1, + anon_sym_RPAREN, + ACTIONS(2905), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_arguments_repeat1, + [42823] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(553), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42832] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2907), 1, + anon_sym_in, + ACTIONS(2909), 2, + sym_super, + sym_crate, + [42843] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(2911), 1, + anon_sym_SEMI, + STATE(316), 1, + sym_declaration_list, + [42856] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(494), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42865] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(529), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42874] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2427), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42883] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2421), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42892] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1516), 1, + anon_sym_GT, + ACTIONS(2913), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_type_arguments_repeat1, + [42905] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2419), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42914] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1454), 1, + anon_sym_RPAREN, + ACTIONS(2915), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [42927] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2403), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42936] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2395), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42945] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2196), 1, + anon_sym_fn, + ACTIONS(2917), 1, + anon_sym_type, + STATE(1576), 1, + sym_function, + [42958] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1480), 1, + anon_sym_RPAREN, + ACTIONS(2919), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [42971] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2921), 1, + anon_sym_RBRACE, + ACTIONS(2923), 1, + anon_sym_COMMA, + STATE(1291), 1, + aux_sym_enum_variant_list_repeat2, + [42984] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2927), 1, + anon_sym_COLON, + ACTIONS(2925), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [42995] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2834), 1, + anon_sym_RBRACE, + ACTIONS(2929), 1, + anon_sym_COMMA, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [43008] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2409), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43017] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(2931), 1, + anon_sym_SEMI, + STATE(304), 1, + sym_block, + [43030] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(478), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43039] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(486), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43048] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2933), 1, + anon_sym_RBRACE, + ACTIONS(2935), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym_field_declaration_list_repeat1, + [43061] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2939), 1, + anon_sym_COLON, + ACTIONS(2937), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43072] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2409), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43081] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 1, + anon_sym_POUND, + ACTIONS(1218), 2, + anon_sym_pub, + sym_identifier, + [43092] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(688), 1, + anon_sym_RBRACK, + ACTIONS(1883), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [43105] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2001), 1, + anon_sym_RBRACK, + ACTIONS(2941), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [43118] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2401), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43127] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2399), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43136] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2944), 1, + anon_sym_RBRACE, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1149), 1, + aux_sym_struct_pattern_repeat1, + [43149] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2389), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43158] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2196), 1, + anon_sym_fn, + ACTIONS(2948), 1, + anon_sym_type, + STATE(1553), 1, + sym_function, + [43171] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + anon_sym_SEMI, + STATE(331), 1, + sym_declaration_list, + [43184] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2540), 1, + anon_sym_RPAREN, + ACTIONS(2952), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym_function_repeat1, + [43197] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2955), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43206] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2125), 1, + anon_sym_RBRACE, + ACTIONS(2957), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_use_list_repeat1, + [43219] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2742), 1, + anon_sym_RPAREN, + ACTIONS(2959), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_parameters_repeat1, + [43232] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2962), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43241] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2964), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43250] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(706), 1, + anon_sym_RBRACK, + ACTIONS(1829), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [43263] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_block, + [43276] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1798), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + anon_sym_COLON_COLON, + STATE(783), 1, + sym_field_initializer_list, + [43289] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(2970), 1, + anon_sym_SEMI, + STATE(285), 1, + sym_declaration_list, + [43302] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1512), 1, + anon_sym_GT, + ACTIONS(2972), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_type_arguments_repeat1, + [43315] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2579), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, + anon_sym_SEMI, + STATE(302), 1, + sym_field_declaration_list, + [43328] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(474), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43337] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2417), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43346] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2976), 1, + anon_sym_COMMA, + ACTIONS(2978), 1, + anon_sym_GT, + STATE(1210), 1, + aux_sym_type_arguments_repeat1, + [43359] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2980), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43368] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2982), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43377] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(2984), 1, + anon_sym_SEMI, + STATE(491), 1, + sym_declaration_list, + [43390] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2387), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43399] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2986), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43408] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2988), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43417] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2990), 1, + anon_sym_PIPE, + ACTIONS(2992), 1, + anon_sym_EQ_GT, + ACTIONS(2994), 1, + anon_sym_if, + [43430] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, + anon_sym_GT, + STATE(1262), 1, + aux_sym_type_parameters_repeat1, + [43443] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2381), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43452] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2162), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43461] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(2996), 1, + anon_sym_SEMI, + STATE(301), 1, + sym_declaration_list, + [43474] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1833), 1, + anon_sym_RPAREN, + ACTIONS(2998), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym_function_repeat1, + [43487] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(3000), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43498] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + ACTIONS(3002), 1, + anon_sym_COLON_COLON, + STATE(861), 1, + sym_type_arguments, + [43511] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2276), 1, + anon_sym_RBRACE, + ACTIONS(3004), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_field_initializer_list_repeat1, + [43524] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + STATE(1399), 1, + sym_field_pattern, + [43537] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3008), 1, + anon_sym_COLON, + ACTIONS(3006), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43548] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3010), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43557] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(593), 1, + anon_sym_RPAREN, + ACTIONS(1885), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_arguments_repeat1, + [43570] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(593), 1, + anon_sym_RPAREN, + ACTIONS(1885), 1, + anon_sym_COMMA, + STATE(1166), 1, + aux_sym_arguments_repeat1, + [43583] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(3012), 1, + anon_sym_SEMI, + STATE(271), 1, + sym_declaration_list, + [43596] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2377), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43605] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2579), 1, + anon_sym_LBRACE, + ACTIONS(3014), 1, + anon_sym_SEMI, + STATE(274), 1, + sym_field_declaration_list, + [43618] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3016), 1, + anon_sym_RBRACE, + ACTIONS(3018), 1, + anon_sym_COMMA, + STATE(1183), 1, + aux_sym_struct_pattern_repeat1, + [43631] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2196), 1, + anon_sym_fn, + ACTIONS(3020), 1, + anon_sym_type, + STATE(1474), 1, + sym_function, + [43644] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3022), 1, + anon_sym_COMMA, + ACTIONS(3024), 1, + anon_sym_RPAREN, + STATE(1226), 1, + aux_sym_function_repeat1, + [43657] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2375), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43666] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1532), 1, + anon_sym_LBRACE, + ACTIONS(3026), 1, + anon_sym_COLON_COLON, + STATE(450), 1, + sym_field_initializer_list, + [43679] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2371), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43688] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, + anon_sym_SEMI, + STATE(489), 1, + sym_block, + [43701] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2391), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43710] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2359), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43719] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3030), 1, + anon_sym_RBRACE, + ACTIONS(3032), 1, + anon_sym_COMMA, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [43732] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1492), 1, + anon_sym_LBRACE, + ACTIONS(3035), 1, + anon_sym_SEMI, + STATE(321), 1, + sym_block, + [43745] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3037), 1, + anon_sym_SEMI, + STATE(530), 1, + sym_declaration_list, + [43758] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2361), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43767] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3039), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_declaration_list, + [43780] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2365), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43789] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(694), 1, + anon_sym_RBRACK, + ACTIONS(1808), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [43802] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2425), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43811] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(3041), 1, + anon_sym_SEMI, + STATE(276), 1, + sym_declaration_list, + [43824] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + ACTIONS(3043), 2, + anon_sym_COMMA, + anon_sym_GT, + [43835] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2610), 1, + anon_sym_LBRACE, + ACTIONS(3045), 1, + anon_sym_SEMI, + STATE(538), 1, + sym_field_declaration_list, + [43848] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + ACTIONS(3047), 2, + anon_sym_COMMA, + anon_sym_GT, + [43859] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(3049), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43870] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2724), 1, + anon_sym_COLON_COLON, + ACTIONS(3047), 2, + anon_sym_COMMA, + anon_sym_GT, + [43881] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1875), 1, + anon_sym_GT, + ACTIONS(3051), 1, + anon_sym_COMMA, + STATE(1276), 1, + aux_sym_type_parameters_repeat1, + [43894] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1873), 1, + anon_sym_GT, + ACTIONS(2722), 1, + anon_sym_COMMA, + STATE(1276), 1, + aux_sym_type_parameters_repeat1, + [43907] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1873), 1, + anon_sym_GT, + ACTIONS(2722), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_type_parameters_repeat1, + [43920] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(3053), 1, + anon_sym_SEMI, + STATE(258), 1, + sym_declaration_list, + [43933] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2357), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43942] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2724), 1, + anon_sym_COLON_COLON, + ACTIONS(3043), 2, + anon_sym_COMMA, + anon_sym_GT, + [43953] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2363), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43962] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(696), 1, + anon_sym_RBRACK, + ACTIONS(3055), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [43975] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2367), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43984] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2351), 1, + anon_sym_RBRACE, + ACTIONS(3057), 1, + anon_sym_COMMA, + STATE(1323), 1, + aux_sym_enum_variant_list_repeat2, + [43997] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2373), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44006] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2383), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44015] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3059), 1, + anon_sym_COMMA, + ACTIONS(3062), 1, + anon_sym_GT, + STATE(1273), 1, + aux_sym_type_arguments_repeat1, + [44028] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2379), 1, + anon_sym_RBRACE, + ACTIONS(3064), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_field_declaration_list_repeat1, + [44041] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2385), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44050] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3043), 1, + anon_sym_GT, + ACTIONS(3066), 1, + anon_sym_COMMA, + STATE(1276), 1, + aux_sym_type_parameters_repeat1, + [44063] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(3069), 1, + anon_sym_SEMI, + STATE(1573), 1, + sym_type_parameters, + [44076] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3071), 1, + anon_sym_SEMI, + STATE(523), 1, + sym_declaration_list, + [44089] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(597), 1, + anon_sym_RPAREN, + ACTIONS(3073), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_arguments_repeat1, + [44102] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3075), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44111] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3077), 1, + anon_sym_RBRACE, + ACTIONS(3079), 1, + anon_sym_COMMA, + STATE(1202), 1, + aux_sym_use_list_repeat1, + [44124] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2698), 1, + anon_sym_RBRACE, + ACTIONS(3081), 1, + anon_sym_COMMA, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [44137] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3083), 1, + anon_sym_RBRACE, + ACTIONS(3085), 1, + anon_sym_COMMA, + STATE(1324), 1, + aux_sym_field_initializer_list_repeat1, + [44150] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(3087), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_field_declaration_list_repeat1, + [44163] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1474), 1, + anon_sym_RPAREN, + ACTIONS(3089), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [44176] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(3087), 1, + anon_sym_COMMA, + STATE(1318), 1, + aux_sym_field_declaration_list_repeat1, + [44189] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1843), 1, + anon_sym_COMMA, + ACTIONS(1845), 1, + anon_sym_RPAREN, + STATE(1325), 1, + aux_sym_arguments_repeat1, + [44202] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1857), 1, + anon_sym_GT, + ACTIONS(3091), 1, + anon_sym_COMMA, + STATE(1276), 1, + aux_sym_type_parameters_repeat1, + [44215] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3093), 1, + anon_sym_SEMI, + STATE(565), 1, + sym_declaration_list, + [44228] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1865), 1, + anon_sym_GT, + ACTIONS(3095), 1, + anon_sym_COMMA, + STATE(1276), 1, + aux_sym_type_parameters_repeat1, + [44241] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2343), 1, + anon_sym_RBRACE, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(1323), 1, + aux_sym_enum_variant_list_repeat2, + [44254] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3099), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44263] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1464), 1, + anon_sym_RPAREN, + ACTIONS(3101), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [44276] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1601), 1, + sym_type_parameters, + [44289] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3107), 1, + anon_sym_COLON, + ACTIONS(3105), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44300] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2690), 1, + anon_sym_RBRACE, + ACTIONS(3109), 1, + anon_sym_COMMA, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [44313] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3111), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_declaration_list, + [44326] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2343), 1, + anon_sym_RBRACE, + ACTIONS(3097), 1, + anon_sym_COMMA, + STATE(1326), 1, + aux_sym_enum_variant_list_repeat2, + [44339] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1514), 1, + anon_sym_GT, + ACTIONS(3113), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_type_arguments_repeat1, + [44352] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(956), 1, + anon_sym_RPAREN, + ACTIONS(3115), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_parameters_repeat1, + [44365] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2341), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_COMMA, + STATE(1270), 1, + aux_sym_enum_variant_list_repeat2, + [44378] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2341), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_COMMA, + STATE(1323), 1, + aux_sym_enum_variant_list_repeat2, + [44391] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 1, + anon_sym_LBRACE, + ACTIONS(3119), 1, + anon_sym_SEMI, + STATE(262), 1, + sym_declaration_list, + [44404] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(690), 1, + anon_sym_RBRACK, + ACTIONS(1841), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [44417] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2688), 1, + anon_sym_EQ, + STATE(1570), 1, + sym_type_parameters, + [44430] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3121), 1, + anon_sym_RBRACE, + ACTIONS(3123), 1, + anon_sym_COMMA, + STATE(1333), 1, + aux_sym_field_declaration_list_repeat1, + [44443] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3125), 1, + anon_sym_RBRACE, + ACTIONS(3127), 1, + anon_sym_COMMA, + STATE(1302), 1, + aux_sym_enum_variant_list_repeat2, + [44456] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3129), 1, + anon_sym_RBRACE, + ACTIONS(3131), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_field_declaration_list_repeat1, + [44469] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(952), 1, + anon_sym_RPAREN, + ACTIONS(2651), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_parameters_repeat1, + [44482] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1484), 1, + anon_sym_RBRACK, + ACTIONS(3134), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [44495] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1867), 1, + anon_sym_COMMA, + ACTIONS(1869), 1, + anon_sym_RPAREN, + STATE(1233), 1, + aux_sym_arguments_repeat1, + [44508] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1472), 1, + anon_sym_RPAREN, + ACTIONS(3136), 1, + anon_sym_COMMA, + STATE(1045), 1, + aux_sym_tuple_pattern_repeat1, + [44521] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3138), 1, + anon_sym_COMMA, + ACTIONS(3140), 1, + anon_sym_GT, + STATE(1299), 1, + aux_sym_type_arguments_repeat1, + [44534] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3142), 1, + anon_sym_RBRACE, + ACTIONS(3144), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_struct_pattern_repeat1, + [44547] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(952), 1, + anon_sym_RPAREN, + ACTIONS(2651), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_parameters_repeat1, + [44560] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2724), 1, + anon_sym_COLON_COLON, + ACTIONS(2900), 2, + anon_sym_COMMA, + anon_sym_GT, + [44571] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3146), 1, + anon_sym_RBRACE, + ACTIONS(3148), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_struct_pattern_repeat1, + [44584] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2411), 1, + anon_sym_RBRACE, + ACTIONS(3150), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_field_declaration_list_repeat1, + [44597] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3152), 1, + anon_sym_RBRACE, + ACTIONS(3154), 1, + anon_sym_COMMA, + STATE(1229), 1, + aux_sym_field_initializer_list_repeat1, + [44610] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3158), 1, + anon_sym_COLON, + ACTIONS(3156), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44621] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2674), 1, + anon_sym_EQ, + STATE(1622), 1, + sym_type_parameters, + [44634] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2407), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44643] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3160), 1, + anon_sym_RBRACE, + ACTIONS(3162), 1, + anon_sym_COMMA, + STATE(1323), 1, + aux_sym_enum_variant_list_repeat2, + [44656] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2306), 1, + anon_sym_RBRACE, + ACTIONS(3165), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_field_initializer_list_repeat1, + [44669] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(1839), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_arguments_repeat1, + [44682] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2349), 1, + anon_sym_RBRACE, + ACTIONS(3167), 1, + anon_sym_COMMA, + STATE(1323), 1, + aux_sym_enum_variant_list_repeat2, + [44695] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(1839), 1, + anon_sym_COMMA, + STATE(1279), 1, + aux_sym_arguments_repeat1, + [44708] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_declaration_list, + [44721] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2610), 1, + anon_sym_LBRACE, + ACTIONS(3171), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_field_declaration_list, + [44734] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(3173), 1, + anon_sym_SEMI, + STATE(1555), 1, + sym_type_parameters, + [44747] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2545), 1, + anon_sym_LBRACE, + ACTIONS(3175), 1, + anon_sym_SEMI, + STATE(552), 1, + sym_declaration_list, + [44760] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(704), 1, + anon_sym_RBRACK, + ACTIONS(3177), 1, + anon_sym_COMMA, + STATE(1193), 1, + aux_sym_array_expression_repeat1, + [44773] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2405), 1, + anon_sym_RBRACE, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_field_declaration_list_repeat1, + [44786] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2405), 1, + anon_sym_RBRACE, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(1274), 1, + aux_sym_field_declaration_list_repeat1, + [44799] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, + ACTIONS(3183), 1, + anon_sym_RPAREN, + [44809] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2702), 2, + sym_identifier, + sym_super, + [44817] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3185), 1, + anon_sym_BANG, + ACTIONS(3187), 1, + anon_sym_LBRACK, + [44827] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3183), 1, + anon_sym_RPAREN, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, + [44837] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3191), 1, + anon_sym_SEMI, + ACTIONS(3193), 1, + anon_sym_EQ, + [44847] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3195), 1, + anon_sym_of, + ACTIONS(3197), 1, + anon_sym_EQ, + [44857] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(3199), 1, + anon_sym_EQ, + [44867] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3201), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44875] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3203), 1, + anon_sym_of, + ACTIONS(3205), 1, + anon_sym_EQ, + [44885] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3207), 1, + anon_sym_BANG, + ACTIONS(3209), 1, + anon_sym_LBRACK, + [44895] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3211), 1, + anon_sym_BANG, + ACTIONS(3213), 1, + anon_sym_LBRACK, + [44905] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3215), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44913] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(556), 1, + sym_enum_variant_list, + [44923] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3217), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44931] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(3219), 1, + anon_sym_COLON, + [44941] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3160), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44949] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2852), 1, + sym_super, + ACTIONS(3221), 1, + sym_identifier, + [44959] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2900), 2, + anon_sym_COMMA, + anon_sym_GT, + [44967] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3223), 2, + sym_identifier, + sym_super, + [44975] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3225), 2, + anon_sym_type, + anon_sym_fn, + [44983] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44991] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(70), 1, + sym_block, + [45001] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3227), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45009] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3183), 1, + anon_sym_RPAREN, + ACTIONS(3229), 1, + anon_sym_COLON_COLON, + [45019] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3129), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45027] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2381), 1, + anon_sym_PIPE, + ACTIONS(3219), 1, + anon_sym_COLON, + [45037] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(445), 1, + sym_type_arguments, + [45047] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3231), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45055] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3233), 1, + anon_sym_SEMI, + ACTIONS(3235), 1, + anon_sym_EQ, + [45065] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(2589), 1, + anon_sym_COLON_COLON, + [45075] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2229), 1, + sym_identifier, + ACTIONS(3237), 1, + anon_sym_LPAREN, + [45085] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2166), 1, + anon_sym_BANG, + ACTIONS(3239), 1, + anon_sym_COLON_COLON, + [45095] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_RBRACK, + [45105] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3245), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45113] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3247), 1, + anon_sym_SEMI, + ACTIONS(3249), 1, + anon_sym_EQ, + [45123] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3251), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45131] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1532), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_field_initializer_list, + [45141] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(482), 2, + anon_sym_COMMA, + anon_sym_GT, + [45149] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_enum_variant_list, + [45159] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3253), 1, + anon_sym_of, + ACTIONS(3255), 1, + anon_sym_EQ, + [45169] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, + ACTIONS(3257), 1, + anon_sym_RPAREN, + [45179] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, + ACTIONS(3257), 1, + anon_sym_RPAREN, + [45189] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3259), 1, + anon_sym_COLON_COLON, + ACTIONS(3261), 1, + anon_sym_RPAREN, + [45199] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3263), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45207] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3229), 1, + anon_sym_COLON_COLON, + ACTIONS(3257), 1, + anon_sym_RPAREN, + [45217] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3267), 1, + anon_sym_EQ, + [45227] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(3269), 1, + anon_sym_EQ, + [45237] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + sym_super, + [45247] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3275), 1, + anon_sym_SEMI, + ACTIONS(3277), 1, + anon_sym_EQ, + [45257] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3279), 1, + anon_sym_SEMI, + ACTIONS(3281), 1, + anon_sym_EQ, + [45267] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3283), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45275] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3285), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45283] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3062), 2, + anon_sym_COMMA, + anon_sym_GT, + [45291] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3287), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45299] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3289), 2, + sym_identifier, + sym_super, + [45307] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2465), 2, + sym_identifier, + sym_super, + [45315] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3289), 1, + sym_super, + ACTIONS(3291), 1, + sym_identifier, + [45325] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3289), 1, + sym_super, + ACTIONS(3293), 1, + sym_identifier, + [45335] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(2702), 1, + sym_super, + [45345] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3295), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45353] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(3297), 1, + anon_sym_COLON_COLON, + [45363] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3299), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45371] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_enum_variant_list, + [45381] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3301), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45389] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45397] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3043), 2, + anon_sym_COMMA, + anon_sym_GT, + [45405] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2874), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45413] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2891), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45421] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3205), 1, + anon_sym_EQ, + ACTIONS(3303), 1, + anon_sym_SEMI, + [45431] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_BANG, + ACTIONS(2589), 1, + anon_sym_COLON_COLON, + [45441] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3305), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45449] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2785), 1, + anon_sym_LT2, + STATE(800), 1, + sym_type_arguments, + [45459] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3307), 1, + sym_numeric_literal, + ACTIONS(3309), 1, + sym_identifier, + [45469] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3311), 1, + anon_sym_COLON_COLON, + ACTIONS(3313), 1, + anon_sym_LPAREN, + [45479] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3315), 1, + sym_identifier, + ACTIONS(3317), 1, + sym_super, + [45489] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_block, + [45499] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2716), 1, + sym_identifier, + [45509] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3223), 1, + sym_super, + ACTIONS(3319), 1, + sym_identifier, + [45519] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2852), 1, + sym_super, + ACTIONS(3271), 1, + sym_identifier, + [45529] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2787), 1, + sym_identifier, + ACTIONS(2789), 1, + sym_super, + [45539] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2850), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45547] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(384), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_block, + [45557] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3321), 1, + anon_sym_LBRACE, + STATE(642), 1, + sym_block, + [45567] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3323), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45575] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACE, + STATE(257), 1, + sym_block, + [45585] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3325), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45593] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3327), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45601] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3329), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_block, + [45611] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + sym_super, + [45621] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2749), 1, + sym_identifier, + [45631] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3335), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45639] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3337), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45647] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2716), 1, + sym_identifier, + [45657] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45665] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2465), 1, + sym_super, + ACTIONS(2838), 1, + sym_identifier, + [45675] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3223), 1, + sym_super, + ACTIONS(3293), 1, + sym_identifier, + [45685] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3273), 1, + sym_super, + ACTIONS(3339), 1, + sym_identifier, + [45695] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2657), 1, + anon_sym_PIPE, + ACTIONS(3341), 1, + anon_sym_COLON, + [45705] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3343), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45713] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3345), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_block, + [45723] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_block, + [45733] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3347), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45741] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2823), 1, + anon_sym_LPAREN, + STATE(973), 1, + sym_parameters, + [45751] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3349), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45759] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45767] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_LBRACE, + STATE(292), 1, + sym_enum_variant_list, + [45777] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2852), 2, + sym_identifier, + sym_super, + [45785] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3223), 1, + sym_super, + ACTIONS(3351), 1, + sym_identifier, + [45795] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2925), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45803] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3353), 1, + anon_sym_SEMI, + ACTIONS(3355), 1, + anon_sym_EQ, + [45813] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2415), 1, + anon_sym_LT2, + STATE(874), 1, + sym_type_arguments, + [45823] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3289), 1, + sym_super, + ACTIONS(3357), 1, + sym_identifier, + [45833] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2836), 1, + sym_identifier, + [45843] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3273), 1, + sym_super, + ACTIONS(3359), 1, + sym_identifier, + [45853] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1798), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_field_initializer_list, + [45863] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3361), 1, + sym_numeric_literal, + ACTIONS(3363), 1, + sym_identifier, + [45873] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3367), 1, + sym_super, + [45883] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(384), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_block, + [45893] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3369), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_block, + [45903] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3259), 1, + anon_sym_COLON_COLON, + ACTIONS(3371), 1, + anon_sym_RPAREN, + [45913] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(3373), 1, + anon_sym_BANG, + [45923] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3289), 1, + sym_super, + ACTIONS(3375), 1, + sym_identifier, + [45933] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2702), 1, + sym_super, + ACTIONS(2819), 1, + sym_identifier, + [45943] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2819), 1, + sym_identifier, + ACTIONS(2821), 1, + sym_super, + [45953] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2439), 1, + anon_sym_COLON_COLON, + ACTIONS(3377), 1, + anon_sym_BANG, + [45963] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2852), 1, + sym_super, + ACTIONS(3379), 1, + sym_identifier, + [45973] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3375), 1, + sym_identifier, + ACTIONS(3381), 1, + sym_super, + [45983] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2467), 1, + anon_sym_COLON_COLON, + ACTIONS(3377), 1, + anon_sym_BANG, + [45993] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3383), 1, + anon_sym_SEMI, + ACTIONS(3385), 1, + anon_sym_EQ, + [46003] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3387), 2, + anon_sym_COMMA, + anon_sym_GT, + [46011] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3389), 2, + anon_sym_COMMA, + anon_sym_GT, + [46019] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3273), 2, + sym_identifier, + sym_super, + [46027] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3391), 1, + anon_sym_SEMI, + ACTIONS(3393), 1, + anon_sym_EQ, + [46037] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3393), 1, + anon_sym_EQ, + ACTIONS(3395), 1, + anon_sym_of, + [46047] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3273), 1, + sym_super, + ACTIONS(3365), 1, + sym_identifier, + [46057] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3397), 1, + sym_identifier, + [46064] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3399), 1, + sym_identifier, + [46071] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3401), 1, + anon_sym_RBRACK, + [46078] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + [46085] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3405), 1, + anon_sym_SEMI, + [46092] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3407), 1, + anon_sym_RBRACK, + [46099] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2455), 1, + anon_sym_COLON_COLON, + [46106] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3409), 1, + anon_sym_RBRACK, + [46113] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3411), 1, + anon_sym_RBRACK, + [46120] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3413), 1, + anon_sym_RBRACK, + [46127] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2933), 1, + anon_sym_RBRACE, + [46134] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2927), 1, + anon_sym_COLON, + [46141] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3415), 1, + sym_identifier, + [46148] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3417), 1, + sym_identifier, + [46155] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3419), 1, + anon_sym_RBRACK, + [46162] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3421), 1, + sym_identifier, + [46169] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3423), 1, + sym_identifier, + [46176] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3425), 1, + sym_identifier, + [46183] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3427), 1, + sym_identifier, + [46190] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3429), 1, + anon_sym_DQUOTE, + [46197] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3431), 1, + anon_sym_SEMI, + [46204] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3433), 1, + sym_identifier, + [46211] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3435), 1, + anon_sym_RBRACK, + [46218] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(706), 1, + anon_sym_RBRACK, + [46225] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3437), 1, + anon_sym_SEMI, + [46232] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3439), 1, + anon_sym_SEMI, + [46239] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3121), 1, + anon_sym_RBRACE, + [46246] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2921), 1, + anon_sym_RBRACE, + [46253] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3441), 1, + anon_sym_RBRACE, + [46260] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3443), 1, + anon_sym_RBRACE, + [46267] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3445), 1, + sym_identifier, + [46274] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(684), 1, + anon_sym_RBRACK, + [46281] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3447), 1, + anon_sym_RBRACK, + [46288] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3449), 1, + anon_sym_COLON_COLON, + [46295] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3451), 1, + anon_sym_DQUOTE, + [46302] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3453), 1, + anon_sym_RBRACK, + [46309] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2593), 1, + anon_sym_RPAREN, + [46316] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3455), 1, + anon_sym_RBRACK, + [46323] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3457), 1, + sym_identifier, + [46330] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3459), 1, + sym_identifier, + [46337] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3461), 1, + sym_identifier, + [46344] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3463), 1, + sym_identifier, + [46351] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3465), 1, + sym_identifier, + [46358] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3467), 1, + anon_sym_EQ_GT, + [46365] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3469), 1, + sym_identifier, + [46372] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2653), 1, + anon_sym_RBRACK, + [46379] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3471), 1, + anon_sym_EQ_GT, + [46386] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3473), 1, + sym_numeric_literal, + [46393] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3475), 1, + anon_sym_COLON_COLON, + [46400] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3477), 1, + anon_sym_SEMI, + [46407] = 2, + ACTIONS(3479), 1, + aux_sym_string_literal_token2, + ACTIONS(3481), 1, + sym_line_comment, + [46414] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2011), 1, + anon_sym_COLON_COLON, + [46421] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3483), 1, + anon_sym_SEMI, + [46428] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3485), 1, + anon_sym_RBRACK, + [46435] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2767), 1, + anon_sym_RPAREN, + [46442] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3487), 1, + sym_identifier, + [46449] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3489), 1, + anon_sym_DQUOTE, + [46456] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2278), 1, + sym_identifier, + [46463] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3152), 1, + anon_sym_RBRACE, + [46470] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2254), 1, + anon_sym_COLON_COLON, + [46477] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3491), 1, + anon_sym_DQUOTE, + [46484] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3493), 1, + anon_sym_SEMI, + [46491] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3495), 1, + anon_sym_SEMI, + [46498] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3497), 1, + anon_sym_COLON_COLON, + [46505] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3499), 1, + anon_sym_EQ_GT, + [46512] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3501), 1, + anon_sym_RBRACE, + [46519] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3503), 1, + anon_sym_RBRACK, + [46526] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3505), 1, + sym_identifier, + [46533] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3507), 1, + sym_identifier, + [46540] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3509), 1, + sym_identifier, + [46547] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3511), 1, + sym_identifier, + [46554] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3016), 1, + anon_sym_RBRACE, + [46561] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3513), 1, + sym_identifier, + [46568] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3515), 1, + sym_identifier, + [46575] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3517), 1, + anon_sym_SEMI, + [46582] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(694), 1, + anon_sym_RBRACK, + [46589] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2842), 1, + anon_sym_RPAREN, + [46596] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2728), 1, + anon_sym_RBRACK, + [46603] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 1, + anon_sym_COLON_COLON, + [46610] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2353), 1, + anon_sym_COLON_COLON, + [46617] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2720), 1, + anon_sym_RPAREN, + [46624] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3519), 1, + sym_identifier, + [46631] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3521), 1, + sym_numeric_literal, + [46638] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3523), 1, + anon_sym_SEMI, + [46645] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2830), 1, + anon_sym_RPAREN, + [46652] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3525), 1, + anon_sym_SEMI, + [46659] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3527), 1, + sym_identifier, + [46666] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3529), 1, + anon_sym_SEMI, + [46673] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2944), 1, + anon_sym_RBRACE, + [46680] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3531), 1, + anon_sym_EQ_GT, + [46687] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3533), 1, + sym_identifier, + [46694] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3535), 1, + anon_sym_RPAREN, + [46701] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3537), 1, + anon_sym_RBRACE, + [46708] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3077), 1, + anon_sym_RBRACE, + [46715] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3539), 1, + anon_sym_COLON, + [46722] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(676), 1, + anon_sym_RBRACK, + [46729] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3541), 1, + anon_sym_LBRACK, + [46736] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3083), 1, + anon_sym_RBRACE, + [46743] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3543), 1, + anon_sym_LBRACK, + [46750] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3545), 1, + anon_sym_COLON, + [46757] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3255), 1, + anon_sym_EQ, + [46764] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3547), 1, + anon_sym_EQ_GT, + [46771] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3549), 1, + anon_sym_SEMI, + [46778] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3551), 1, + anon_sym_SEMI, + [46785] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1845), 1, + anon_sym_RPAREN, + [46792] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3553), 1, + anon_sym_SEMI, + [46799] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3555), 1, + anon_sym_SEMI, + [46806] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3557), 1, + anon_sym_COLON, + [46813] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3559), 1, + anon_sym_COLON, + [46820] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3561), 1, + anon_sym_RBRACE, + [46827] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3563), 1, + anon_sym_SEMI, + [46834] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3107), 1, + anon_sym_COLON, + [46841] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3565), 1, + sym_identifier, + [46848] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3567), 1, + anon_sym_SEMI, + [46855] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3569), 1, + ts_builtin_sym_end, + [46862] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1768), 1, + anon_sym_COLON_COLON, + [46869] = 2, + ACTIONS(3481), 1, + sym_line_comment, + ACTIONS(3571), 1, + aux_sym_string_literal_token2, + [46876] = 2, + ACTIONS(3481), 1, + sym_line_comment, + ACTIONS(3573), 1, + aux_sym_string_literal_token2, + [46883] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2043), 1, + anon_sym_COLON_COLON, + [46890] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3575), 1, + sym_identifier, + [46897] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3577), 1, + sym_identifier, + [46904] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3579), 1, + anon_sym_COLON_COLON, + [46911] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3581), 1, + anon_sym_RBRACK, + [46918] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3583), 1, + anon_sym_RBRACE, + [46925] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2670), 1, + anon_sym_RPAREN, + [46932] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3585), 1, + anon_sym_RPAREN, + [46939] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3587), 1, + anon_sym_SEMI, + [46946] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3589), 1, + sym_identifier, + [46953] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3591), 1, + sym_identifier, + [46960] = 2, + ACTIONS(3481), 1, + sym_line_comment, + ACTIONS(3593), 1, + aux_sym_string_literal_token2, + [46967] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3595), 1, + sym_identifier, + [46974] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3597), 1, + anon_sym_SEMI, + [46981] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2797), 1, + anon_sym_COLON_COLON, + [46988] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3599), 1, + anon_sym_COLON, + [46995] = 2, + ACTIONS(3481), 1, + sym_line_comment, + ACTIONS(3601), 1, + aux_sym_string_literal_token2, + [47002] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3603), 1, + sym_identifier, + [47009] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2639), 1, + anon_sym_COLON_COLON, + [47016] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3125), 1, + anon_sym_RBRACE, + [47023] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2856), 1, + anon_sym_COLON_COLON, + [47030] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3605), 1, + sym_identifier, + [47037] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3607), 1, + sym_identifier, + [47044] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2684), 1, + anon_sym_RPAREN, + [47051] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2270), 1, + sym_identifier, + [47058] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3609), 1, + anon_sym_COLON, + [47065] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3611), 1, + anon_sym_LBRACK, + [47072] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3613), 1, + anon_sym_LBRACK, + [47079] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3615), 1, + sym_identifier, + [47086] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3617), 1, + anon_sym_COLON, + [47093] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2272), 1, + sym_identifier, + [47100] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3142), 1, + anon_sym_RBRACE, + [47107] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3619), 1, + anon_sym_COLON, + [47114] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3146), 1, + anon_sym_RBRACE, + [47121] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3197), 1, + anon_sym_EQ, + [47128] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1869), 1, + anon_sym_RPAREN, + [47135] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3621), 1, + anon_sym_LBRACK, + [47142] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3623), 1, + anon_sym_LBRACK, + [47149] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3625), 1, + anon_sym_LBRACK, + [47156] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3627), 1, + anon_sym_LBRACK, + [47163] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3629), 1, + sym_identifier, + [47170] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3631), 1, + sym_identifier, + [47177] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3633), 1, + sym_identifier, + [47184] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3635), 1, + sym_identifier, + [47191] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3637), 1, + sym_identifier, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(221)] = 0, + [SMALL_STATE(222)] = 70, + [SMALL_STATE(223)] = 140, + [SMALL_STATE(224)] = 210, + [SMALL_STATE(225)] = 280, + [SMALL_STATE(226)] = 350, + [SMALL_STATE(227)] = 420, + [SMALL_STATE(228)] = 490, + [SMALL_STATE(229)] = 618, + [SMALL_STATE(230)] = 688, + [SMALL_STATE(231)] = 801, + [SMALL_STATE(232)] = 926, + [SMALL_STATE(233)] = 1039, + [SMALL_STATE(234)] = 1104, + [SMALL_STATE(235)] = 1217, + [SMALL_STATE(236)] = 1282, + [SMALL_STATE(237)] = 1407, + [SMALL_STATE(238)] = 1472, + [SMALL_STATE(239)] = 1537, + [SMALL_STATE(240)] = 1602, + [SMALL_STATE(241)] = 1715, + [SMALL_STATE(242)] = 1840, + [SMALL_STATE(243)] = 1905, + [SMALL_STATE(244)] = 2018, + [SMALL_STATE(245)] = 2082, + [SMALL_STATE(246)] = 2204, + [SMALL_STATE(247)] = 2268, + [SMALL_STATE(248)] = 2332, + [SMALL_STATE(249)] = 2396, + [SMALL_STATE(250)] = 2460, + [SMALL_STATE(251)] = 2524, + [SMALL_STATE(252)] = 2592, + [SMALL_STATE(253)] = 2656, + [SMALL_STATE(254)] = 2720, + [SMALL_STATE(255)] = 2784, + [SMALL_STATE(256)] = 2852, + [SMALL_STATE(257)] = 2916, + [SMALL_STATE(258)] = 2980, + [SMALL_STATE(259)] = 3043, + [SMALL_STATE(260)] = 3106, + [SMALL_STATE(261)] = 3169, + [SMALL_STATE(262)] = 3232, + [SMALL_STATE(263)] = 3295, + [SMALL_STATE(264)] = 3358, + [SMALL_STATE(265)] = 3421, + [SMALL_STATE(266)] = 3484, + [SMALL_STATE(267)] = 3547, + [SMALL_STATE(268)] = 3610, + [SMALL_STATE(269)] = 3673, + [SMALL_STATE(270)] = 3736, + [SMALL_STATE(271)] = 3799, + [SMALL_STATE(272)] = 3862, + [SMALL_STATE(273)] = 3925, + [SMALL_STATE(274)] = 3988, + [SMALL_STATE(275)] = 4051, + [SMALL_STATE(276)] = 4114, + [SMALL_STATE(277)] = 4177, + [SMALL_STATE(278)] = 4240, + [SMALL_STATE(279)] = 4303, + [SMALL_STATE(280)] = 4366, + [SMALL_STATE(281)] = 4429, + [SMALL_STATE(282)] = 4492, + [SMALL_STATE(283)] = 4555, + [SMALL_STATE(284)] = 4618, + [SMALL_STATE(285)] = 4681, + [SMALL_STATE(286)] = 4744, + [SMALL_STATE(287)] = 4807, + [SMALL_STATE(288)] = 4870, + [SMALL_STATE(289)] = 4933, + [SMALL_STATE(290)] = 4996, + [SMALL_STATE(291)] = 5059, + [SMALL_STATE(292)] = 5122, + [SMALL_STATE(293)] = 5185, + [SMALL_STATE(294)] = 5248, + [SMALL_STATE(295)] = 5311, + [SMALL_STATE(296)] = 5374, + [SMALL_STATE(297)] = 5437, + [SMALL_STATE(298)] = 5500, + [SMALL_STATE(299)] = 5563, + [SMALL_STATE(300)] = 5626, + [SMALL_STATE(301)] = 5689, + [SMALL_STATE(302)] = 5752, + [SMALL_STATE(303)] = 5815, + [SMALL_STATE(304)] = 5878, + [SMALL_STATE(305)] = 5941, + [SMALL_STATE(306)] = 6004, + [SMALL_STATE(307)] = 6067, + [SMALL_STATE(308)] = 6130, + [SMALL_STATE(309)] = 6193, + [SMALL_STATE(310)] = 6256, + [SMALL_STATE(311)] = 6319, + [SMALL_STATE(312)] = 6382, + [SMALL_STATE(313)] = 6445, + [SMALL_STATE(314)] = 6508, + [SMALL_STATE(315)] = 6571, + [SMALL_STATE(316)] = 6634, + [SMALL_STATE(317)] = 6697, + [SMALL_STATE(318)] = 6760, + [SMALL_STATE(319)] = 6823, + [SMALL_STATE(320)] = 6886, + [SMALL_STATE(321)] = 6949, + [SMALL_STATE(322)] = 7012, + [SMALL_STATE(323)] = 7075, + [SMALL_STATE(324)] = 7138, + [SMALL_STATE(325)] = 7201, + [SMALL_STATE(326)] = 7264, + [SMALL_STATE(327)] = 7327, + [SMALL_STATE(328)] = 7390, + [SMALL_STATE(329)] = 7453, + [SMALL_STATE(330)] = 7516, + [SMALL_STATE(331)] = 7579, + [SMALL_STATE(332)] = 7642, + [SMALL_STATE(333)] = 7705, + [SMALL_STATE(334)] = 7768, + [SMALL_STATE(335)] = 7831, + [SMALL_STATE(336)] = 7894, + [SMALL_STATE(337)] = 7957, + [SMALL_STATE(338)] = 8073, + [SMALL_STATE(339)] = 8189, + [SMALL_STATE(340)] = 8305, + [SMALL_STATE(341)] = 8421, + [SMALL_STATE(342)] = 8537, + [SMALL_STATE(343)] = 8650, + [SMALL_STATE(344)] = 8765, + [SMALL_STATE(345)] = 8878, + [SMALL_STATE(346)] = 8993, + [SMALL_STATE(347)] = 9108, + [SMALL_STATE(348)] = 9221, + [SMALL_STATE(349)] = 9336, + [SMALL_STATE(350)] = 9446, + [SMALL_STATE(351)] = 9552, + [SMALL_STATE(352)] = 9658, + [SMALL_STATE(353)] = 9759, + [SMALL_STATE(354)] = 9860, + [SMALL_STATE(355)] = 9961, + [SMALL_STATE(356)] = 10062, + [SMALL_STATE(357)] = 10163, + [SMALL_STATE(358)] = 10264, + [SMALL_STATE(359)] = 10365, + [SMALL_STATE(360)] = 10466, + [SMALL_STATE(361)] = 10564, + [SMALL_STATE(362)] = 10662, + [SMALL_STATE(363)] = 10760, + [SMALL_STATE(364)] = 10858, + [SMALL_STATE(365)] = 10956, + [SMALL_STATE(366)] = 11054, + [SMALL_STATE(367)] = 11152, + [SMALL_STATE(368)] = 11250, + [SMALL_STATE(369)] = 11348, + [SMALL_STATE(370)] = 11446, + [SMALL_STATE(371)] = 11544, + [SMALL_STATE(372)] = 11642, + [SMALL_STATE(373)] = 11740, + [SMALL_STATE(374)] = 11838, + [SMALL_STATE(375)] = 11936, + [SMALL_STATE(376)] = 12034, + [SMALL_STATE(377)] = 12129, + [SMALL_STATE(378)] = 12224, + [SMALL_STATE(379)] = 12319, + [SMALL_STATE(380)] = 12414, + [SMALL_STATE(381)] = 12509, + [SMALL_STATE(382)] = 12604, + [SMALL_STATE(383)] = 12699, + [SMALL_STATE(384)] = 12794, + [SMALL_STATE(385)] = 12889, + [SMALL_STATE(386)] = 12946, + [SMALL_STATE(387)] = 13041, + [SMALL_STATE(388)] = 13136, + [SMALL_STATE(389)] = 13231, + [SMALL_STATE(390)] = 13326, + [SMALL_STATE(391)] = 13421, + [SMALL_STATE(392)] = 13516, + [SMALL_STATE(393)] = 13611, + [SMALL_STATE(394)] = 13706, + [SMALL_STATE(395)] = 13798, + [SMALL_STATE(396)] = 13890, + [SMALL_STATE(397)] = 13982, + [SMALL_STATE(398)] = 14074, + [SMALL_STATE(399)] = 14166, + [SMALL_STATE(400)] = 14258, + [SMALL_STATE(401)] = 14309, + [SMALL_STATE(402)] = 14398, + [SMALL_STATE(403)] = 14487, + [SMALL_STATE(404)] = 14576, + [SMALL_STATE(405)] = 14665, + [SMALL_STATE(406)] = 14713, + [SMALL_STATE(407)] = 14758, + [SMALL_STATE(408)] = 14803, + [SMALL_STATE(409)] = 14856, + [SMALL_STATE(410)] = 14901, + [SMALL_STATE(411)] = 14946, + [SMALL_STATE(412)] = 14991, + [SMALL_STATE(413)] = 15036, + [SMALL_STATE(414)] = 15081, + [SMALL_STATE(415)] = 15127, + [SMALL_STATE(416)] = 15175, + [SMALL_STATE(417)] = 15221, + [SMALL_STATE(418)] = 15267, + [SMALL_STATE(419)] = 15313, + [SMALL_STATE(420)] = 15358, + [SMALL_STATE(421)] = 15431, + [SMALL_STATE(422)] = 15474, + [SMALL_STATE(423)] = 15521, + [SMALL_STATE(424)] = 15574, + [SMALL_STATE(425)] = 15617, + [SMALL_STATE(426)] = 15670, + [SMALL_STATE(427)] = 15723, + [SMALL_STATE(428)] = 15766, + [SMALL_STATE(429)] = 15819, + [SMALL_STATE(430)] = 15864, + [SMALL_STATE(431)] = 15907, + [SMALL_STATE(432)] = 15950, + [SMALL_STATE(433)] = 15997, + [SMALL_STATE(434)] = 16070, + [SMALL_STATE(435)] = 16123, + [SMALL_STATE(436)] = 16196, + [SMALL_STATE(437)] = 16241, + [SMALL_STATE(438)] = 16314, + [SMALL_STATE(439)] = 16356, + [SMALL_STATE(440)] = 16398, + [SMALL_STATE(441)] = 16452, + [SMALL_STATE(442)] = 16516, + [SMALL_STATE(443)] = 16558, + [SMALL_STATE(444)] = 16600, + [SMALL_STATE(445)] = 16642, + [SMALL_STATE(446)] = 16684, + [SMALL_STATE(447)] = 16756, + [SMALL_STATE(448)] = 16812, + [SMALL_STATE(449)] = 16854, + [SMALL_STATE(450)] = 16896, + [SMALL_STATE(451)] = 16938, + [SMALL_STATE(452)] = 17010, + [SMALL_STATE(453)] = 17052, + [SMALL_STATE(454)] = 17094, + [SMALL_STATE(455)] = 17164, + [SMALL_STATE(456)] = 17206, + [SMALL_STATE(457)] = 17248, + [SMALL_STATE(458)] = 17290, + [SMALL_STATE(459)] = 17332, + [SMALL_STATE(460)] = 17374, + [SMALL_STATE(461)] = 17416, + [SMALL_STATE(462)] = 17488, + [SMALL_STATE(463)] = 17530, + [SMALL_STATE(464)] = 17572, + [SMALL_STATE(465)] = 17640, + [SMALL_STATE(466)] = 17682, + [SMALL_STATE(467)] = 17744, + [SMALL_STATE(468)] = 17786, + [SMALL_STATE(469)] = 17828, + [SMALL_STATE(470)] = 17870, + [SMALL_STATE(471)] = 17912, + [SMALL_STATE(472)] = 17954, + [SMALL_STATE(473)] = 17996, + [SMALL_STATE(474)] = 18038, + [SMALL_STATE(475)] = 18080, + [SMALL_STATE(476)] = 18122, + [SMALL_STATE(477)] = 18166, + [SMALL_STATE(478)] = 18238, + [SMALL_STATE(479)] = 18280, + [SMALL_STATE(480)] = 18322, + [SMALL_STATE(481)] = 18364, + [SMALL_STATE(482)] = 18406, + [SMALL_STATE(483)] = 18448, + [SMALL_STATE(484)] = 18506, + [SMALL_STATE(485)] = 18548, + [SMALL_STATE(486)] = 18590, + [SMALL_STATE(487)] = 18650, + [SMALL_STATE(488)] = 18691, + [SMALL_STATE(489)] = 18732, + [SMALL_STATE(490)] = 18773, + [SMALL_STATE(491)] = 18814, + [SMALL_STATE(492)] = 18855, + [SMALL_STATE(493)] = 18904, + [SMALL_STATE(494)] = 18983, + [SMALL_STATE(495)] = 19024, + [SMALL_STATE(496)] = 19065, + [SMALL_STATE(497)] = 19106, + [SMALL_STATE(498)] = 19147, + [SMALL_STATE(499)] = 19188, + [SMALL_STATE(500)] = 19229, + [SMALL_STATE(501)] = 19270, + [SMALL_STATE(502)] = 19311, + [SMALL_STATE(503)] = 19352, + [SMALL_STATE(504)] = 19393, + [SMALL_STATE(505)] = 19434, + [SMALL_STATE(506)] = 19475, + [SMALL_STATE(507)] = 19516, + [SMALL_STATE(508)] = 19557, + [SMALL_STATE(509)] = 19598, + [SMALL_STATE(510)] = 19639, + [SMALL_STATE(511)] = 19680, + [SMALL_STATE(512)] = 19721, + [SMALL_STATE(513)] = 19762, + [SMALL_STATE(514)] = 19803, + [SMALL_STATE(515)] = 19844, + [SMALL_STATE(516)] = 19885, + [SMALL_STATE(517)] = 19930, + [SMALL_STATE(518)] = 19971, + [SMALL_STATE(519)] = 20012, + [SMALL_STATE(520)] = 20053, + [SMALL_STATE(521)] = 20094, + [SMALL_STATE(522)] = 20135, + [SMALL_STATE(523)] = 20176, + [SMALL_STATE(524)] = 20217, + [SMALL_STATE(525)] = 20258, + [SMALL_STATE(526)] = 20299, + [SMALL_STATE(527)] = 20340, + [SMALL_STATE(528)] = 20381, + [SMALL_STATE(529)] = 20460, + [SMALL_STATE(530)] = 20501, + [SMALL_STATE(531)] = 20542, + [SMALL_STATE(532)] = 20583, + [SMALL_STATE(533)] = 20624, + [SMALL_STATE(534)] = 20665, + [SMALL_STATE(535)] = 20744, + [SMALL_STATE(536)] = 20785, + [SMALL_STATE(537)] = 20826, + [SMALL_STATE(538)] = 20867, + [SMALL_STATE(539)] = 20908, + [SMALL_STATE(540)] = 20949, + [SMALL_STATE(541)] = 20990, + [SMALL_STATE(542)] = 21031, + [SMALL_STATE(543)] = 21072, + [SMALL_STATE(544)] = 21113, + [SMALL_STATE(545)] = 21192, + [SMALL_STATE(546)] = 21233, + [SMALL_STATE(547)] = 21274, + [SMALL_STATE(548)] = 21315, + [SMALL_STATE(549)] = 21356, + [SMALL_STATE(550)] = 21397, + [SMALL_STATE(551)] = 21438, + [SMALL_STATE(552)] = 21479, + [SMALL_STATE(553)] = 21520, + [SMALL_STATE(554)] = 21561, + [SMALL_STATE(555)] = 21602, + [SMALL_STATE(556)] = 21643, + [SMALL_STATE(557)] = 21684, + [SMALL_STATE(558)] = 21725, + [SMALL_STATE(559)] = 21766, + [SMALL_STATE(560)] = 21807, + [SMALL_STATE(561)] = 21848, + [SMALL_STATE(562)] = 21889, + [SMALL_STATE(563)] = 21930, + [SMALL_STATE(564)] = 21971, + [SMALL_STATE(565)] = 22012, + [SMALL_STATE(566)] = 22053, + [SMALL_STATE(567)] = 22094, + [SMALL_STATE(568)] = 22135, + [SMALL_STATE(569)] = 22176, + [SMALL_STATE(570)] = 22217, + [SMALL_STATE(571)] = 22258, + [SMALL_STATE(572)] = 22304, + [SMALL_STATE(573)] = 22370, + [SMALL_STATE(574)] = 22412, + [SMALL_STATE(575)] = 22488, + [SMALL_STATE(576)] = 22564, + [SMALL_STATE(577)] = 22606, + [SMALL_STATE(578)] = 22682, + [SMALL_STATE(579)] = 22724, + [SMALL_STATE(580)] = 22790, + [SMALL_STATE(581)] = 22856, + [SMALL_STATE(582)] = 22932, + [SMALL_STATE(583)] = 22998, + [SMALL_STATE(584)] = 23064, + [SMALL_STATE(585)] = 23130, + [SMALL_STATE(586)] = 23196, + [SMALL_STATE(587)] = 23262, + [SMALL_STATE(588)] = 23328, + [SMALL_STATE(589)] = 23404, + [SMALL_STATE(590)] = 23480, + [SMALL_STATE(591)] = 23522, + [SMALL_STATE(592)] = 23588, + [SMALL_STATE(593)] = 23659, + [SMALL_STATE(594)] = 23722, + [SMALL_STATE(595)] = 23763, + [SMALL_STATE(596)] = 23826, + [SMALL_STATE(597)] = 23869, + [SMALL_STATE(598)] = 23932, + [SMALL_STATE(599)] = 23995, + [SMALL_STATE(600)] = 24058, + [SMALL_STATE(601)] = 24131, + [SMALL_STATE(602)] = 24194, + [SMALL_STATE(603)] = 24257, + [SMALL_STATE(604)] = 24320, + [SMALL_STATE(605)] = 24393, + [SMALL_STATE(606)] = 24466, + [SMALL_STATE(607)] = 24529, + [SMALL_STATE(608)] = 24592, + [SMALL_STATE(609)] = 24655, + [SMALL_STATE(610)] = 24718, + [SMALL_STATE(611)] = 24759, + [SMALL_STATE(612)] = 24822, + [SMALL_STATE(613)] = 24893, + [SMALL_STATE(614)] = 24956, + [SMALL_STATE(615)] = 24999, + [SMALL_STATE(616)] = 25062, + [SMALL_STATE(617)] = 25101, + [SMALL_STATE(618)] = 25164, + [SMALL_STATE(619)] = 25203, + [SMALL_STATE(620)] = 25266, + [SMALL_STATE(621)] = 25329, + [SMALL_STATE(622)] = 25400, + [SMALL_STATE(623)] = 25471, + [SMALL_STATE(624)] = 25514, + [SMALL_STATE(625)] = 25557, + [SMALL_STATE(626)] = 25630, + [SMALL_STATE(627)] = 25703, + [SMALL_STATE(628)] = 25776, + [SMALL_STATE(629)] = 25839, + [SMALL_STATE(630)] = 25902, + [SMALL_STATE(631)] = 25965, + [SMALL_STATE(632)] = 26036, + [SMALL_STATE(633)] = 26109, + [SMALL_STATE(634)] = 26180, + [SMALL_STATE(635)] = 26251, + [SMALL_STATE(636)] = 26324, + [SMALL_STATE(637)] = 26387, + [SMALL_STATE(638)] = 26460, + [SMALL_STATE(639)] = 26533, + [SMALL_STATE(640)] = 26596, + [SMALL_STATE(641)] = 26659, + [SMALL_STATE(642)] = 26732, + [SMALL_STATE(643)] = 26775, + [SMALL_STATE(644)] = 26848, + [SMALL_STATE(645)] = 26921, + [SMALL_STATE(646)] = 26962, + [SMALL_STATE(647)] = 27003, + [SMALL_STATE(648)] = 27076, + [SMALL_STATE(649)] = 27139, + [SMALL_STATE(650)] = 27202, + [SMALL_STATE(651)] = 27265, + [SMALL_STATE(652)] = 27328, + [SMALL_STATE(653)] = 27391, + [SMALL_STATE(654)] = 27464, + [SMALL_STATE(655)] = 27537, + [SMALL_STATE(656)] = 27600, + [SMALL_STATE(657)] = 27663, + [SMALL_STATE(658)] = 27736, + [SMALL_STATE(659)] = 27809, + [SMALL_STATE(660)] = 27882, + [SMALL_STATE(661)] = 27955, + [SMALL_STATE(662)] = 28026, + [SMALL_STATE(663)] = 28089, + [SMALL_STATE(664)] = 28160, + [SMALL_STATE(665)] = 28199, + [SMALL_STATE(666)] = 28238, + [SMALL_STATE(667)] = 28301, + [SMALL_STATE(668)] = 28340, + [SMALL_STATE(669)] = 28411, + [SMALL_STATE(670)] = 28474, + [SMALL_STATE(671)] = 28513, + [SMALL_STATE(672)] = 28576, + [SMALL_STATE(673)] = 28615, + [SMALL_STATE(674)] = 28654, + [SMALL_STATE(675)] = 28717, + [SMALL_STATE(676)] = 28790, + [SMALL_STATE(677)] = 28863, + [SMALL_STATE(678)] = 28936, + [SMALL_STATE(679)] = 29009, + [SMALL_STATE(680)] = 29080, + [SMALL_STATE(681)] = 29143, + [SMALL_STATE(682)] = 29206, + [SMALL_STATE(683)] = 29279, + [SMALL_STATE(684)] = 29352, + [SMALL_STATE(685)] = 29415, + [SMALL_STATE(686)] = 29488, + [SMALL_STATE(687)] = 29527, + [SMALL_STATE(688)] = 29600, + [SMALL_STATE(689)] = 29663, + [SMALL_STATE(690)] = 29702, + [SMALL_STATE(691)] = 29775, + [SMALL_STATE(692)] = 29814, + [SMALL_STATE(693)] = 29877, + [SMALL_STATE(694)] = 29940, + [SMALL_STATE(695)] = 29979, + [SMALL_STATE(696)] = 30019, + [SMALL_STATE(697)] = 30077, + [SMALL_STATE(698)] = 30129, + [SMALL_STATE(699)] = 30195, + [SMALL_STATE(700)] = 30259, + [SMALL_STATE(701)] = 30317, + [SMALL_STATE(702)] = 30371, + [SMALL_STATE(703)] = 30427, + [SMALL_STATE(704)] = 30477, + [SMALL_STATE(705)] = 30515, + [SMALL_STATE(706)] = 30575, + [SMALL_STATE(707)] = 30645, + [SMALL_STATE(708)] = 30693, + [SMALL_STATE(709)] = 30761, + [SMALL_STATE(710)] = 30799, + [SMALL_STATE(711)] = 30839, + [SMALL_STATE(712)] = 30879, + [SMALL_STATE(713)] = 30949, + [SMALL_STATE(714)] = 30997, + [SMALL_STATE(715)] = 31067, + [SMALL_STATE(716)] = 31137, + [SMALL_STATE(717)] = 31207, + [SMALL_STATE(718)] = 31247, + [SMALL_STATE(719)] = 31285, + [SMALL_STATE(720)] = 31353, + [SMALL_STATE(721)] = 31421, + [SMALL_STATE(722)] = 31489, + [SMALL_STATE(723)] = 31529, + [SMALL_STATE(724)] = 31567, + [SMALL_STATE(725)] = 31605, + [SMALL_STATE(726)] = 31653, + [SMALL_STATE(727)] = 31723, + [SMALL_STATE(728)] = 31793, + [SMALL_STATE(729)] = 31863, + [SMALL_STATE(730)] = 31933, + [SMALL_STATE(731)] = 32003, + [SMALL_STATE(732)] = 32073, + [SMALL_STATE(733)] = 32143, + [SMALL_STATE(734)] = 32181, + [SMALL_STATE(735)] = 32251, + [SMALL_STATE(736)] = 32321, + [SMALL_STATE(737)] = 32359, + [SMALL_STATE(738)] = 32429, + [SMALL_STATE(739)] = 32497, + [SMALL_STATE(740)] = 32567, + [SMALL_STATE(741)] = 32637, + [SMALL_STATE(742)] = 32707, + [SMALL_STATE(743)] = 32777, + [SMALL_STATE(744)] = 32847, + [SMALL_STATE(745)] = 32917, + [SMALL_STATE(746)] = 32985, + [SMALL_STATE(747)] = 33033, + [SMALL_STATE(748)] = 33103, + [SMALL_STATE(749)] = 33141, + [SMALL_STATE(750)] = 33209, + [SMALL_STATE(751)] = 33279, + [SMALL_STATE(752)] = 33349, + [SMALL_STATE(753)] = 33401, + [SMALL_STATE(754)] = 33471, + [SMALL_STATE(755)] = 33537, + [SMALL_STATE(756)] = 33601, + [SMALL_STATE(757)] = 33671, + [SMALL_STATE(758)] = 33741, + [SMALL_STATE(759)] = 33795, + [SMALL_STATE(760)] = 33851, + [SMALL_STATE(761)] = 33901, + [SMALL_STATE(762)] = 33971, + [SMALL_STATE(763)] = 34031, + [SMALL_STATE(764)] = 34101, + [SMALL_STATE(765)] = 34139, + [SMALL_STATE(766)] = 34209, + [SMALL_STATE(767)] = 34277, + [SMALL_STATE(768)] = 34347, + [SMALL_STATE(769)] = 34384, + [SMALL_STATE(770)] = 34421, + [SMALL_STATE(771)] = 34458, + [SMALL_STATE(772)] = 34495, + [SMALL_STATE(773)] = 34532, + [SMALL_STATE(774)] = 34569, + [SMALL_STATE(775)] = 34606, + [SMALL_STATE(776)] = 34643, + [SMALL_STATE(777)] = 34680, + [SMALL_STATE(778)] = 34717, + [SMALL_STATE(779)] = 34754, + [SMALL_STATE(780)] = 34791, + [SMALL_STATE(781)] = 34828, + [SMALL_STATE(782)] = 34865, + [SMALL_STATE(783)] = 34902, + [SMALL_STATE(784)] = 34939, + [SMALL_STATE(785)] = 34994, + [SMALL_STATE(786)] = 35031, + [SMALL_STATE(787)] = 35068, + [SMALL_STATE(788)] = 35105, + [SMALL_STATE(789)] = 35142, + [SMALL_STATE(790)] = 35179, + [SMALL_STATE(791)] = 35216, + [SMALL_STATE(792)] = 35253, + [SMALL_STATE(793)] = 35290, + [SMALL_STATE(794)] = 35327, + [SMALL_STATE(795)] = 35364, + [SMALL_STATE(796)] = 35401, + [SMALL_STATE(797)] = 35438, + [SMALL_STATE(798)] = 35475, + [SMALL_STATE(799)] = 35512, + [SMALL_STATE(800)] = 35549, + [SMALL_STATE(801)] = 35586, + [SMALL_STATE(802)] = 35623, + [SMALL_STATE(803)] = 35660, + [SMALL_STATE(804)] = 35697, + [SMALL_STATE(805)] = 35734, + [SMALL_STATE(806)] = 35771, + [SMALL_STATE(807)] = 35808, + [SMALL_STATE(808)] = 35845, + [SMALL_STATE(809)] = 35882, + [SMALL_STATE(810)] = 35919, + [SMALL_STATE(811)] = 35956, + [SMALL_STATE(812)] = 35993, + [SMALL_STATE(813)] = 36030, + [SMALL_STATE(814)] = 36067, + [SMALL_STATE(815)] = 36119, + [SMALL_STATE(816)] = 36171, + [SMALL_STATE(817)] = 36220, + [SMALL_STATE(818)] = 36269, + [SMALL_STATE(819)] = 36318, + [SMALL_STATE(820)] = 36367, + [SMALL_STATE(821)] = 36416, + [SMALL_STATE(822)] = 36453, + [SMALL_STATE(823)] = 36484, + [SMALL_STATE(824)] = 36526, + [SMALL_STATE(825)] = 36565, + [SMALL_STATE(826)] = 36604, + [SMALL_STATE(827)] = 36643, + [SMALL_STATE(828)] = 36682, + [SMALL_STATE(829)] = 36721, + [SMALL_STATE(830)] = 36760, + [SMALL_STATE(831)] = 36799, + [SMALL_STATE(832)] = 36838, + [SMALL_STATE(833)] = 36877, + [SMALL_STATE(834)] = 36916, + [SMALL_STATE(835)] = 36955, + [SMALL_STATE(836)] = 36991, + [SMALL_STATE(837)] = 37027, + [SMALL_STATE(838)] = 37053, + [SMALL_STATE(839)] = 37079, + [SMALL_STATE(840)] = 37105, + [SMALL_STATE(841)] = 37131, + [SMALL_STATE(842)] = 37165, + [SMALL_STATE(843)] = 37188, + [SMALL_STATE(844)] = 37209, + [SMALL_STATE(845)] = 37232, + [SMALL_STATE(846)] = 37255, + [SMALL_STATE(847)] = 37276, + [SMALL_STATE(848)] = 37299, + [SMALL_STATE(849)] = 37320, + [SMALL_STATE(850)] = 37341, + [SMALL_STATE(851)] = 37359, + [SMALL_STATE(852)] = 37377, + [SMALL_STATE(853)] = 37405, + [SMALL_STATE(854)] = 37423, + [SMALL_STATE(855)] = 37441, + [SMALL_STATE(856)] = 37481, + [SMALL_STATE(857)] = 37499, + [SMALL_STATE(858)] = 37517, + [SMALL_STATE(859)] = 37557, + [SMALL_STATE(860)] = 37575, + [SMALL_STATE(861)] = 37596, + [SMALL_STATE(862)] = 37613, + [SMALL_STATE(863)] = 37632, + [SMALL_STATE(864)] = 37651, + [SMALL_STATE(865)] = 37682, + [SMALL_STATE(866)] = 37699, + [SMALL_STATE(867)] = 37724, + [SMALL_STATE(868)] = 37745, + [SMALL_STATE(869)] = 37764, + [SMALL_STATE(870)] = 37781, + [SMALL_STATE(871)] = 37812, + [SMALL_STATE(872)] = 37831, + [SMALL_STATE(873)] = 37852, + [SMALL_STATE(874)] = 37873, + [SMALL_STATE(875)] = 37890, + [SMALL_STATE(876)] = 37906, + [SMALL_STATE(877)] = 37922, + [SMALL_STATE(878)] = 37938, + [SMALL_STATE(879)] = 37966, + [SMALL_STATE(880)] = 37982, + [SMALL_STATE(881)] = 38014, + [SMALL_STATE(882)] = 38030, + [SMALL_STATE(883)] = 38054, + [SMALL_STATE(884)] = 38070, + [SMALL_STATE(885)] = 38086, + [SMALL_STATE(886)] = 38118, + [SMALL_STATE(887)] = 38134, + [SMALL_STATE(888)] = 38162, + [SMALL_STATE(889)] = 38178, + [SMALL_STATE(890)] = 38210, + [SMALL_STATE(891)] = 38226, + [SMALL_STATE(892)] = 38254, + [SMALL_STATE(893)] = 38282, + [SMALL_STATE(894)] = 38314, + [SMALL_STATE(895)] = 38334, + [SMALL_STATE(896)] = 38350, + [SMALL_STATE(897)] = 38377, + [SMALL_STATE(898)] = 38406, + [SMALL_STATE(899)] = 38421, + [SMALL_STATE(900)] = 38450, + [SMALL_STATE(901)] = 38465, + [SMALL_STATE(902)] = 38488, + [SMALL_STATE(903)] = 38517, + [SMALL_STATE(904)] = 38546, + [SMALL_STATE(905)] = 38575, + [SMALL_STATE(906)] = 38604, + [SMALL_STATE(907)] = 38633, + [SMALL_STATE(908)] = 38662, + [SMALL_STATE(909)] = 38677, + [SMALL_STATE(910)] = 38702, + [SMALL_STATE(911)] = 38721, + [SMALL_STATE(912)] = 38750, + [SMALL_STATE(913)] = 38764, + [SMALL_STATE(914)] = 38790, + [SMALL_STATE(915)] = 38804, + [SMALL_STATE(916)] = 38818, + [SMALL_STATE(917)] = 38832, + [SMALL_STATE(918)] = 38846, + [SMALL_STATE(919)] = 38860, + [SMALL_STATE(920)] = 38886, + [SMALL_STATE(921)] = 38912, + [SMALL_STATE(922)] = 38930, + [SMALL_STATE(923)] = 38944, + [SMALL_STATE(924)] = 38958, + [SMALL_STATE(925)] = 38976, + [SMALL_STATE(926)] = 38990, + [SMALL_STATE(927)] = 39008, + [SMALL_STATE(928)] = 39022, + [SMALL_STATE(929)] = 39048, + [SMALL_STATE(930)] = 39062, + [SMALL_STATE(931)] = 39080, + [SMALL_STATE(932)] = 39094, + [SMALL_STATE(933)] = 39108, + [SMALL_STATE(934)] = 39122, + [SMALL_STATE(935)] = 39136, + [SMALL_STATE(936)] = 39150, + [SMALL_STATE(937)] = 39176, + [SMALL_STATE(938)] = 39190, + [SMALL_STATE(939)] = 39216, + [SMALL_STATE(940)] = 39230, + [SMALL_STATE(941)] = 39256, + [SMALL_STATE(942)] = 39270, + [SMALL_STATE(943)] = 39284, + [SMALL_STATE(944)] = 39310, + [SMALL_STATE(945)] = 39324, + [SMALL_STATE(946)] = 39338, + [SMALL_STATE(947)] = 39352, + [SMALL_STATE(948)] = 39378, + [SMALL_STATE(949)] = 39404, + [SMALL_STATE(950)] = 39426, + [SMALL_STATE(951)] = 39440, + [SMALL_STATE(952)] = 39454, + [SMALL_STATE(953)] = 39468, + [SMALL_STATE(954)] = 39482, + [SMALL_STATE(955)] = 39496, + [SMALL_STATE(956)] = 39510, + [SMALL_STATE(957)] = 39524, + [SMALL_STATE(958)] = 39543, + [SMALL_STATE(959)] = 39568, + [SMALL_STATE(960)] = 39589, + [SMALL_STATE(961)] = 39610, + [SMALL_STATE(962)] = 39633, + [SMALL_STATE(963)] = 39654, + [SMALL_STATE(964)] = 39677, + [SMALL_STATE(965)] = 39700, + [SMALL_STATE(966)] = 39725, + [SMALL_STATE(967)] = 39750, + [SMALL_STATE(968)] = 39773, + [SMALL_STATE(969)] = 39798, + [SMALL_STATE(970)] = 39821, + [SMALL_STATE(971)] = 39844, + [SMALL_STATE(972)] = 39867, + [SMALL_STATE(973)] = 39879, + [SMALL_STATE(974)] = 39899, + [SMALL_STATE(975)] = 39917, + [SMALL_STATE(976)] = 39937, + [SMALL_STATE(977)] = 39957, + [SMALL_STATE(978)] = 39975, + [SMALL_STATE(979)] = 39995, + [SMALL_STATE(980)] = 40015, + [SMALL_STATE(981)] = 40035, + [SMALL_STATE(982)] = 40057, + [SMALL_STATE(983)] = 40069, + [SMALL_STATE(984)] = 40081, + [SMALL_STATE(985)] = 40097, + [SMALL_STATE(986)] = 40117, + [SMALL_STATE(987)] = 40137, + [SMALL_STATE(988)] = 40149, + [SMALL_STATE(989)] = 40167, + [SMALL_STATE(990)] = 40187, + [SMALL_STATE(991)] = 40209, + [SMALL_STATE(992)] = 40229, + [SMALL_STATE(993)] = 40251, + [SMALL_STATE(994)] = 40266, + [SMALL_STATE(995)] = 40285, + [SMALL_STATE(996)] = 40300, + [SMALL_STATE(997)] = 40319, + [SMALL_STATE(998)] = 40334, + [SMALL_STATE(999)] = 40345, + [SMALL_STATE(1000)] = 40364, + [SMALL_STATE(1001)] = 40381, + [SMALL_STATE(1002)] = 40400, + [SMALL_STATE(1003)] = 40411, + [SMALL_STATE(1004)] = 40422, + [SMALL_STATE(1005)] = 40433, + [SMALL_STATE(1006)] = 40448, + [SMALL_STATE(1007)] = 40465, + [SMALL_STATE(1008)] = 40484, + [SMALL_STATE(1009)] = 40499, + [SMALL_STATE(1010)] = 40518, + [SMALL_STATE(1011)] = 40529, + [SMALL_STATE(1012)] = 40544, + [SMALL_STATE(1013)] = 40555, + [SMALL_STATE(1014)] = 40574, + [SMALL_STATE(1015)] = 40591, + [SMALL_STATE(1016)] = 40606, + [SMALL_STATE(1017)] = 40625, + [SMALL_STATE(1018)] = 40642, + [SMALL_STATE(1019)] = 40659, + [SMALL_STATE(1020)] = 40678, + [SMALL_STATE(1021)] = 40695, + [SMALL_STATE(1022)] = 40714, + [SMALL_STATE(1023)] = 40725, + [SMALL_STATE(1024)] = 40736, + [SMALL_STATE(1025)] = 40747, + [SMALL_STATE(1026)] = 40758, + [SMALL_STATE(1027)] = 40769, + [SMALL_STATE(1028)] = 40788, + [SMALL_STATE(1029)] = 40807, + [SMALL_STATE(1030)] = 40818, + [SMALL_STATE(1031)] = 40829, + [SMALL_STATE(1032)] = 40848, + [SMALL_STATE(1033)] = 40865, + [SMALL_STATE(1034)] = 40876, + [SMALL_STATE(1035)] = 40887, + [SMALL_STATE(1036)] = 40904, + [SMALL_STATE(1037)] = 40915, + [SMALL_STATE(1038)] = 40932, + [SMALL_STATE(1039)] = 40949, + [SMALL_STATE(1040)] = 40960, + [SMALL_STATE(1041)] = 40977, + [SMALL_STATE(1042)] = 40988, + [SMALL_STATE(1043)] = 40999, + [SMALL_STATE(1044)] = 41015, + [SMALL_STATE(1045)] = 41029, + [SMALL_STATE(1046)] = 41043, + [SMALL_STATE(1047)] = 41057, + [SMALL_STATE(1048)] = 41069, + [SMALL_STATE(1049)] = 41085, + [SMALL_STATE(1050)] = 41101, + [SMALL_STATE(1051)] = 41117, + [SMALL_STATE(1052)] = 41131, + [SMALL_STATE(1053)] = 41147, + [SMALL_STATE(1054)] = 41163, + [SMALL_STATE(1055)] = 41179, + [SMALL_STATE(1056)] = 41195, + [SMALL_STATE(1057)] = 41207, + [SMALL_STATE(1058)] = 41223, + [SMALL_STATE(1059)] = 41239, + [SMALL_STATE(1060)] = 41255, + [SMALL_STATE(1061)] = 41271, + [SMALL_STATE(1062)] = 41287, + [SMALL_STATE(1063)] = 41303, + [SMALL_STATE(1064)] = 41319, + [SMALL_STATE(1065)] = 41333, + [SMALL_STATE(1066)] = 41349, + [SMALL_STATE(1067)] = 41363, + [SMALL_STATE(1068)] = 41379, + [SMALL_STATE(1069)] = 41395, + [SMALL_STATE(1070)] = 41411, + [SMALL_STATE(1071)] = 41427, + [SMALL_STATE(1072)] = 41443, + [SMALL_STATE(1073)] = 41459, + [SMALL_STATE(1074)] = 41475, + [SMALL_STATE(1075)] = 41491, + [SMALL_STATE(1076)] = 41507, + [SMALL_STATE(1077)] = 41523, + [SMALL_STATE(1078)] = 41537, + [SMALL_STATE(1079)] = 41553, + [SMALL_STATE(1080)] = 41569, + [SMALL_STATE(1081)] = 41585, + [SMALL_STATE(1082)] = 41601, + [SMALL_STATE(1083)] = 41613, + [SMALL_STATE(1084)] = 41627, + [SMALL_STATE(1085)] = 41643, + [SMALL_STATE(1086)] = 41659, + [SMALL_STATE(1087)] = 41675, + [SMALL_STATE(1088)] = 41691, + [SMALL_STATE(1089)] = 41707, + [SMALL_STATE(1090)] = 41723, + [SMALL_STATE(1091)] = 41739, + [SMALL_STATE(1092)] = 41755, + [SMALL_STATE(1093)] = 41769, + [SMALL_STATE(1094)] = 41785, + [SMALL_STATE(1095)] = 41799, + [SMALL_STATE(1096)] = 41815, + [SMALL_STATE(1097)] = 41831, + [SMALL_STATE(1098)] = 41847, + [SMALL_STATE(1099)] = 41863, + [SMALL_STATE(1100)] = 41879, + [SMALL_STATE(1101)] = 41895, + [SMALL_STATE(1102)] = 41911, + [SMALL_STATE(1103)] = 41927, + [SMALL_STATE(1104)] = 41943, + [SMALL_STATE(1105)] = 41955, + [SMALL_STATE(1106)] = 41971, + [SMALL_STATE(1107)] = 41987, + [SMALL_STATE(1108)] = 42001, + [SMALL_STATE(1109)] = 42017, + [SMALL_STATE(1110)] = 42033, + [SMALL_STATE(1111)] = 42049, + [SMALL_STATE(1112)] = 42065, + [SMALL_STATE(1113)] = 42079, + [SMALL_STATE(1114)] = 42095, + [SMALL_STATE(1115)] = 42111, + [SMALL_STATE(1116)] = 42127, + [SMALL_STATE(1117)] = 42143, + [SMALL_STATE(1118)] = 42159, + [SMALL_STATE(1119)] = 42173, + [SMALL_STATE(1120)] = 42189, + [SMALL_STATE(1121)] = 42203, + [SMALL_STATE(1122)] = 42219, + [SMALL_STATE(1123)] = 42233, + [SMALL_STATE(1124)] = 42247, + [SMALL_STATE(1125)] = 42263, + [SMALL_STATE(1126)] = 42279, + [SMALL_STATE(1127)] = 42295, + [SMALL_STATE(1128)] = 42311, + [SMALL_STATE(1129)] = 42327, + [SMALL_STATE(1130)] = 42343, + [SMALL_STATE(1131)] = 42359, + [SMALL_STATE(1132)] = 42375, + [SMALL_STATE(1133)] = 42391, + [SMALL_STATE(1134)] = 42407, + [SMALL_STATE(1135)] = 42423, + [SMALL_STATE(1136)] = 42439, + [SMALL_STATE(1137)] = 42451, + [SMALL_STATE(1138)] = 42467, + [SMALL_STATE(1139)] = 42479, + [SMALL_STATE(1140)] = 42493, + [SMALL_STATE(1141)] = 42509, + [SMALL_STATE(1142)] = 42523, + [SMALL_STATE(1143)] = 42539, + [SMALL_STATE(1144)] = 42548, + [SMALL_STATE(1145)] = 42561, + [SMALL_STATE(1146)] = 42574, + [SMALL_STATE(1147)] = 42585, + [SMALL_STATE(1148)] = 42596, + [SMALL_STATE(1149)] = 42607, + [SMALL_STATE(1150)] = 42620, + [SMALL_STATE(1151)] = 42629, + [SMALL_STATE(1152)] = 42640, + [SMALL_STATE(1153)] = 42653, + [SMALL_STATE(1154)] = 42666, + [SMALL_STATE(1155)] = 42675, + [SMALL_STATE(1156)] = 42688, + [SMALL_STATE(1157)] = 42699, + [SMALL_STATE(1158)] = 42712, + [SMALL_STATE(1159)] = 42725, + [SMALL_STATE(1160)] = 42738, + [SMALL_STATE(1161)] = 42751, + [SMALL_STATE(1162)] = 42764, + [SMALL_STATE(1163)] = 42775, + [SMALL_STATE(1164)] = 42784, + [SMALL_STATE(1165)] = 42797, + [SMALL_STATE(1166)] = 42810, + [SMALL_STATE(1167)] = 42823, + [SMALL_STATE(1168)] = 42832, + [SMALL_STATE(1169)] = 42843, + [SMALL_STATE(1170)] = 42856, + [SMALL_STATE(1171)] = 42865, + [SMALL_STATE(1172)] = 42874, + [SMALL_STATE(1173)] = 42883, + [SMALL_STATE(1174)] = 42892, + [SMALL_STATE(1175)] = 42905, + [SMALL_STATE(1176)] = 42914, + [SMALL_STATE(1177)] = 42927, + [SMALL_STATE(1178)] = 42936, + [SMALL_STATE(1179)] = 42945, + [SMALL_STATE(1180)] = 42958, + [SMALL_STATE(1181)] = 42971, + [SMALL_STATE(1182)] = 42984, + [SMALL_STATE(1183)] = 42995, + [SMALL_STATE(1184)] = 43008, + [SMALL_STATE(1185)] = 43017, + [SMALL_STATE(1186)] = 43030, + [SMALL_STATE(1187)] = 43039, + [SMALL_STATE(1188)] = 43048, + [SMALL_STATE(1189)] = 43061, + [SMALL_STATE(1190)] = 43072, + [SMALL_STATE(1191)] = 43081, + [SMALL_STATE(1192)] = 43092, + [SMALL_STATE(1193)] = 43105, + [SMALL_STATE(1194)] = 43118, + [SMALL_STATE(1195)] = 43127, + [SMALL_STATE(1196)] = 43136, + [SMALL_STATE(1197)] = 43149, + [SMALL_STATE(1198)] = 43158, + [SMALL_STATE(1199)] = 43171, + [SMALL_STATE(1200)] = 43184, + [SMALL_STATE(1201)] = 43197, + [SMALL_STATE(1202)] = 43206, + [SMALL_STATE(1203)] = 43219, + [SMALL_STATE(1204)] = 43232, + [SMALL_STATE(1205)] = 43241, + [SMALL_STATE(1206)] = 43250, + [SMALL_STATE(1207)] = 43263, + [SMALL_STATE(1208)] = 43276, + [SMALL_STATE(1209)] = 43289, + [SMALL_STATE(1210)] = 43302, + [SMALL_STATE(1211)] = 43315, + [SMALL_STATE(1212)] = 43328, + [SMALL_STATE(1213)] = 43337, + [SMALL_STATE(1214)] = 43346, + [SMALL_STATE(1215)] = 43359, + [SMALL_STATE(1216)] = 43368, + [SMALL_STATE(1217)] = 43377, + [SMALL_STATE(1218)] = 43390, + [SMALL_STATE(1219)] = 43399, + [SMALL_STATE(1220)] = 43408, + [SMALL_STATE(1221)] = 43417, + [SMALL_STATE(1222)] = 43430, + [SMALL_STATE(1223)] = 43443, + [SMALL_STATE(1224)] = 43452, + [SMALL_STATE(1225)] = 43461, + [SMALL_STATE(1226)] = 43474, + [SMALL_STATE(1227)] = 43487, + [SMALL_STATE(1228)] = 43498, + [SMALL_STATE(1229)] = 43511, + [SMALL_STATE(1230)] = 43524, + [SMALL_STATE(1231)] = 43537, + [SMALL_STATE(1232)] = 43548, + [SMALL_STATE(1233)] = 43557, + [SMALL_STATE(1234)] = 43570, + [SMALL_STATE(1235)] = 43583, + [SMALL_STATE(1236)] = 43596, + [SMALL_STATE(1237)] = 43605, + [SMALL_STATE(1238)] = 43618, + [SMALL_STATE(1239)] = 43631, + [SMALL_STATE(1240)] = 43644, + [SMALL_STATE(1241)] = 43657, + [SMALL_STATE(1242)] = 43666, + [SMALL_STATE(1243)] = 43679, + [SMALL_STATE(1244)] = 43688, + [SMALL_STATE(1245)] = 43701, + [SMALL_STATE(1246)] = 43710, + [SMALL_STATE(1247)] = 43719, + [SMALL_STATE(1248)] = 43732, + [SMALL_STATE(1249)] = 43745, + [SMALL_STATE(1250)] = 43758, + [SMALL_STATE(1251)] = 43767, + [SMALL_STATE(1252)] = 43780, + [SMALL_STATE(1253)] = 43789, + [SMALL_STATE(1254)] = 43802, + [SMALL_STATE(1255)] = 43811, + [SMALL_STATE(1256)] = 43824, + [SMALL_STATE(1257)] = 43835, + [SMALL_STATE(1258)] = 43848, + [SMALL_STATE(1259)] = 43859, + [SMALL_STATE(1260)] = 43870, + [SMALL_STATE(1261)] = 43881, + [SMALL_STATE(1262)] = 43894, + [SMALL_STATE(1263)] = 43907, + [SMALL_STATE(1264)] = 43920, + [SMALL_STATE(1265)] = 43933, + [SMALL_STATE(1266)] = 43942, + [SMALL_STATE(1267)] = 43953, + [SMALL_STATE(1268)] = 43962, + [SMALL_STATE(1269)] = 43975, + [SMALL_STATE(1270)] = 43984, + [SMALL_STATE(1271)] = 43997, + [SMALL_STATE(1272)] = 44006, + [SMALL_STATE(1273)] = 44015, + [SMALL_STATE(1274)] = 44028, + [SMALL_STATE(1275)] = 44041, + [SMALL_STATE(1276)] = 44050, + [SMALL_STATE(1277)] = 44063, + [SMALL_STATE(1278)] = 44076, + [SMALL_STATE(1279)] = 44089, + [SMALL_STATE(1280)] = 44102, + [SMALL_STATE(1281)] = 44111, + [SMALL_STATE(1282)] = 44124, + [SMALL_STATE(1283)] = 44137, + [SMALL_STATE(1284)] = 44150, + [SMALL_STATE(1285)] = 44163, + [SMALL_STATE(1286)] = 44176, + [SMALL_STATE(1287)] = 44189, + [SMALL_STATE(1288)] = 44202, + [SMALL_STATE(1289)] = 44215, + [SMALL_STATE(1290)] = 44228, + [SMALL_STATE(1291)] = 44241, + [SMALL_STATE(1292)] = 44254, + [SMALL_STATE(1293)] = 44263, + [SMALL_STATE(1294)] = 44276, + [SMALL_STATE(1295)] = 44289, + [SMALL_STATE(1296)] = 44300, + [SMALL_STATE(1297)] = 44313, + [SMALL_STATE(1298)] = 44326, + [SMALL_STATE(1299)] = 44339, + [SMALL_STATE(1300)] = 44352, + [SMALL_STATE(1301)] = 44365, + [SMALL_STATE(1302)] = 44378, + [SMALL_STATE(1303)] = 44391, + [SMALL_STATE(1304)] = 44404, + [SMALL_STATE(1305)] = 44417, + [SMALL_STATE(1306)] = 44430, + [SMALL_STATE(1307)] = 44443, + [SMALL_STATE(1308)] = 44456, + [SMALL_STATE(1309)] = 44469, + [SMALL_STATE(1310)] = 44482, + [SMALL_STATE(1311)] = 44495, + [SMALL_STATE(1312)] = 44508, + [SMALL_STATE(1313)] = 44521, + [SMALL_STATE(1314)] = 44534, + [SMALL_STATE(1315)] = 44547, + [SMALL_STATE(1316)] = 44560, + [SMALL_STATE(1317)] = 44571, + [SMALL_STATE(1318)] = 44584, + [SMALL_STATE(1319)] = 44597, + [SMALL_STATE(1320)] = 44610, + [SMALL_STATE(1321)] = 44621, + [SMALL_STATE(1322)] = 44634, + [SMALL_STATE(1323)] = 44643, + [SMALL_STATE(1324)] = 44656, + [SMALL_STATE(1325)] = 44669, + [SMALL_STATE(1326)] = 44682, + [SMALL_STATE(1327)] = 44695, + [SMALL_STATE(1328)] = 44708, + [SMALL_STATE(1329)] = 44721, + [SMALL_STATE(1330)] = 44734, + [SMALL_STATE(1331)] = 44747, + [SMALL_STATE(1332)] = 44760, + [SMALL_STATE(1333)] = 44773, + [SMALL_STATE(1334)] = 44786, + [SMALL_STATE(1335)] = 44799, + [SMALL_STATE(1336)] = 44809, + [SMALL_STATE(1337)] = 44817, + [SMALL_STATE(1338)] = 44827, + [SMALL_STATE(1339)] = 44837, + [SMALL_STATE(1340)] = 44847, + [SMALL_STATE(1341)] = 44857, + [SMALL_STATE(1342)] = 44867, + [SMALL_STATE(1343)] = 44875, + [SMALL_STATE(1344)] = 44885, + [SMALL_STATE(1345)] = 44895, + [SMALL_STATE(1346)] = 44905, + [SMALL_STATE(1347)] = 44913, + [SMALL_STATE(1348)] = 44923, + [SMALL_STATE(1349)] = 44931, + [SMALL_STATE(1350)] = 44941, + [SMALL_STATE(1351)] = 44949, + [SMALL_STATE(1352)] = 44959, + [SMALL_STATE(1353)] = 44967, + [SMALL_STATE(1354)] = 44975, + [SMALL_STATE(1355)] = 44983, + [SMALL_STATE(1356)] = 44991, + [SMALL_STATE(1357)] = 45001, + [SMALL_STATE(1358)] = 45009, + [SMALL_STATE(1359)] = 45019, + [SMALL_STATE(1360)] = 45027, + [SMALL_STATE(1361)] = 45037, + [SMALL_STATE(1362)] = 45047, + [SMALL_STATE(1363)] = 45055, + [SMALL_STATE(1364)] = 45065, + [SMALL_STATE(1365)] = 45075, + [SMALL_STATE(1366)] = 45085, + [SMALL_STATE(1367)] = 45095, + [SMALL_STATE(1368)] = 45105, + [SMALL_STATE(1369)] = 45113, + [SMALL_STATE(1370)] = 45123, + [SMALL_STATE(1371)] = 45131, + [SMALL_STATE(1372)] = 45141, + [SMALL_STATE(1373)] = 45149, + [SMALL_STATE(1374)] = 45159, + [SMALL_STATE(1375)] = 45169, + [SMALL_STATE(1376)] = 45179, + [SMALL_STATE(1377)] = 45189, + [SMALL_STATE(1378)] = 45199, + [SMALL_STATE(1379)] = 45207, + [SMALL_STATE(1380)] = 45217, + [SMALL_STATE(1381)] = 45227, + [SMALL_STATE(1382)] = 45237, + [SMALL_STATE(1383)] = 45247, + [SMALL_STATE(1384)] = 45257, + [SMALL_STATE(1385)] = 45267, + [SMALL_STATE(1386)] = 45275, + [SMALL_STATE(1387)] = 45283, + [SMALL_STATE(1388)] = 45291, + [SMALL_STATE(1389)] = 45299, + [SMALL_STATE(1390)] = 45307, + [SMALL_STATE(1391)] = 45315, + [SMALL_STATE(1392)] = 45325, + [SMALL_STATE(1393)] = 45335, + [SMALL_STATE(1394)] = 45345, + [SMALL_STATE(1395)] = 45353, + [SMALL_STATE(1396)] = 45363, + [SMALL_STATE(1397)] = 45371, + [SMALL_STATE(1398)] = 45381, + [SMALL_STATE(1399)] = 45389, + [SMALL_STATE(1400)] = 45397, + [SMALL_STATE(1401)] = 45405, + [SMALL_STATE(1402)] = 45413, + [SMALL_STATE(1403)] = 45421, + [SMALL_STATE(1404)] = 45431, + [SMALL_STATE(1405)] = 45441, + [SMALL_STATE(1406)] = 45449, + [SMALL_STATE(1407)] = 45459, + [SMALL_STATE(1408)] = 45469, + [SMALL_STATE(1409)] = 45479, + [SMALL_STATE(1410)] = 45489, + [SMALL_STATE(1411)] = 45499, + [SMALL_STATE(1412)] = 45509, + [SMALL_STATE(1413)] = 45519, + [SMALL_STATE(1414)] = 45529, + [SMALL_STATE(1415)] = 45539, + [SMALL_STATE(1416)] = 45547, + [SMALL_STATE(1417)] = 45557, + [SMALL_STATE(1418)] = 45567, + [SMALL_STATE(1419)] = 45575, + [SMALL_STATE(1420)] = 45585, + [SMALL_STATE(1421)] = 45593, + [SMALL_STATE(1422)] = 45601, + [SMALL_STATE(1423)] = 45611, + [SMALL_STATE(1424)] = 45621, + [SMALL_STATE(1425)] = 45631, + [SMALL_STATE(1426)] = 45639, + [SMALL_STATE(1427)] = 45647, + [SMALL_STATE(1428)] = 45657, + [SMALL_STATE(1429)] = 45665, + [SMALL_STATE(1430)] = 45675, + [SMALL_STATE(1431)] = 45685, + [SMALL_STATE(1432)] = 45695, + [SMALL_STATE(1433)] = 45705, + [SMALL_STATE(1434)] = 45713, + [SMALL_STATE(1435)] = 45723, + [SMALL_STATE(1436)] = 45733, + [SMALL_STATE(1437)] = 45741, + [SMALL_STATE(1438)] = 45751, + [SMALL_STATE(1439)] = 45759, + [SMALL_STATE(1440)] = 45767, + [SMALL_STATE(1441)] = 45777, + [SMALL_STATE(1442)] = 45785, + [SMALL_STATE(1443)] = 45795, + [SMALL_STATE(1444)] = 45803, + [SMALL_STATE(1445)] = 45813, + [SMALL_STATE(1446)] = 45823, + [SMALL_STATE(1447)] = 45833, + [SMALL_STATE(1448)] = 45843, + [SMALL_STATE(1449)] = 45853, + [SMALL_STATE(1450)] = 45863, + [SMALL_STATE(1451)] = 45873, + [SMALL_STATE(1452)] = 45883, + [SMALL_STATE(1453)] = 45893, + [SMALL_STATE(1454)] = 45903, + [SMALL_STATE(1455)] = 45913, + [SMALL_STATE(1456)] = 45923, + [SMALL_STATE(1457)] = 45933, + [SMALL_STATE(1458)] = 45943, + [SMALL_STATE(1459)] = 45953, + [SMALL_STATE(1460)] = 45963, + [SMALL_STATE(1461)] = 45973, + [SMALL_STATE(1462)] = 45983, + [SMALL_STATE(1463)] = 45993, + [SMALL_STATE(1464)] = 46003, + [SMALL_STATE(1465)] = 46011, + [SMALL_STATE(1466)] = 46019, + [SMALL_STATE(1467)] = 46027, + [SMALL_STATE(1468)] = 46037, + [SMALL_STATE(1469)] = 46047, + [SMALL_STATE(1470)] = 46057, + [SMALL_STATE(1471)] = 46064, + [SMALL_STATE(1472)] = 46071, + [SMALL_STATE(1473)] = 46078, + [SMALL_STATE(1474)] = 46085, + [SMALL_STATE(1475)] = 46092, + [SMALL_STATE(1476)] = 46099, + [SMALL_STATE(1477)] = 46106, + [SMALL_STATE(1478)] = 46113, + [SMALL_STATE(1479)] = 46120, + [SMALL_STATE(1480)] = 46127, + [SMALL_STATE(1481)] = 46134, + [SMALL_STATE(1482)] = 46141, + [SMALL_STATE(1483)] = 46148, + [SMALL_STATE(1484)] = 46155, + [SMALL_STATE(1485)] = 46162, + [SMALL_STATE(1486)] = 46169, + [SMALL_STATE(1487)] = 46176, + [SMALL_STATE(1488)] = 46183, + [SMALL_STATE(1489)] = 46190, + [SMALL_STATE(1490)] = 46197, + [SMALL_STATE(1491)] = 46204, + [SMALL_STATE(1492)] = 46211, + [SMALL_STATE(1493)] = 46218, + [SMALL_STATE(1494)] = 46225, + [SMALL_STATE(1495)] = 46232, + [SMALL_STATE(1496)] = 46239, + [SMALL_STATE(1497)] = 46246, + [SMALL_STATE(1498)] = 46253, + [SMALL_STATE(1499)] = 46260, + [SMALL_STATE(1500)] = 46267, + [SMALL_STATE(1501)] = 46274, + [SMALL_STATE(1502)] = 46281, + [SMALL_STATE(1503)] = 46288, + [SMALL_STATE(1504)] = 46295, + [SMALL_STATE(1505)] = 46302, + [SMALL_STATE(1506)] = 46309, + [SMALL_STATE(1507)] = 46316, + [SMALL_STATE(1508)] = 46323, + [SMALL_STATE(1509)] = 46330, + [SMALL_STATE(1510)] = 46337, + [SMALL_STATE(1511)] = 46344, + [SMALL_STATE(1512)] = 46351, + [SMALL_STATE(1513)] = 46358, + [SMALL_STATE(1514)] = 46365, + [SMALL_STATE(1515)] = 46372, + [SMALL_STATE(1516)] = 46379, + [SMALL_STATE(1517)] = 46386, + [SMALL_STATE(1518)] = 46393, + [SMALL_STATE(1519)] = 46400, + [SMALL_STATE(1520)] = 46407, + [SMALL_STATE(1521)] = 46414, + [SMALL_STATE(1522)] = 46421, + [SMALL_STATE(1523)] = 46428, + [SMALL_STATE(1524)] = 46435, + [SMALL_STATE(1525)] = 46442, + [SMALL_STATE(1526)] = 46449, + [SMALL_STATE(1527)] = 46456, + [SMALL_STATE(1528)] = 46463, + [SMALL_STATE(1529)] = 46470, + [SMALL_STATE(1530)] = 46477, + [SMALL_STATE(1531)] = 46484, + [SMALL_STATE(1532)] = 46491, + [SMALL_STATE(1533)] = 46498, + [SMALL_STATE(1534)] = 46505, + [SMALL_STATE(1535)] = 46512, + [SMALL_STATE(1536)] = 46519, + [SMALL_STATE(1537)] = 46526, + [SMALL_STATE(1538)] = 46533, + [SMALL_STATE(1539)] = 46540, + [SMALL_STATE(1540)] = 46547, + [SMALL_STATE(1541)] = 46554, + [SMALL_STATE(1542)] = 46561, + [SMALL_STATE(1543)] = 46568, + [SMALL_STATE(1544)] = 46575, + [SMALL_STATE(1545)] = 46582, + [SMALL_STATE(1546)] = 46589, + [SMALL_STATE(1547)] = 46596, + [SMALL_STATE(1548)] = 46603, + [SMALL_STATE(1549)] = 46610, + [SMALL_STATE(1550)] = 46617, + [SMALL_STATE(1551)] = 46624, + [SMALL_STATE(1552)] = 46631, + [SMALL_STATE(1553)] = 46638, + [SMALL_STATE(1554)] = 46645, + [SMALL_STATE(1555)] = 46652, + [SMALL_STATE(1556)] = 46659, + [SMALL_STATE(1557)] = 46666, + [SMALL_STATE(1558)] = 46673, + [SMALL_STATE(1559)] = 46680, + [SMALL_STATE(1560)] = 46687, + [SMALL_STATE(1561)] = 46694, + [SMALL_STATE(1562)] = 46701, + [SMALL_STATE(1563)] = 46708, + [SMALL_STATE(1564)] = 46715, + [SMALL_STATE(1565)] = 46722, + [SMALL_STATE(1566)] = 46729, + [SMALL_STATE(1567)] = 46736, + [SMALL_STATE(1568)] = 46743, + [SMALL_STATE(1569)] = 46750, + [SMALL_STATE(1570)] = 46757, + [SMALL_STATE(1571)] = 46764, + [SMALL_STATE(1572)] = 46771, + [SMALL_STATE(1573)] = 46778, + [SMALL_STATE(1574)] = 46785, + [SMALL_STATE(1575)] = 46792, + [SMALL_STATE(1576)] = 46799, + [SMALL_STATE(1577)] = 46806, + [SMALL_STATE(1578)] = 46813, + [SMALL_STATE(1579)] = 46820, + [SMALL_STATE(1580)] = 46827, + [SMALL_STATE(1581)] = 46834, + [SMALL_STATE(1582)] = 46841, + [SMALL_STATE(1583)] = 46848, + [SMALL_STATE(1584)] = 46855, + [SMALL_STATE(1585)] = 46862, + [SMALL_STATE(1586)] = 46869, + [SMALL_STATE(1587)] = 46876, + [SMALL_STATE(1588)] = 46883, + [SMALL_STATE(1589)] = 46890, + [SMALL_STATE(1590)] = 46897, + [SMALL_STATE(1591)] = 46904, + [SMALL_STATE(1592)] = 46911, + [SMALL_STATE(1593)] = 46918, + [SMALL_STATE(1594)] = 46925, + [SMALL_STATE(1595)] = 46932, + [SMALL_STATE(1596)] = 46939, + [SMALL_STATE(1597)] = 46946, + [SMALL_STATE(1598)] = 46953, + [SMALL_STATE(1599)] = 46960, + [SMALL_STATE(1600)] = 46967, + [SMALL_STATE(1601)] = 46974, + [SMALL_STATE(1602)] = 46981, + [SMALL_STATE(1603)] = 46988, + [SMALL_STATE(1604)] = 46995, + [SMALL_STATE(1605)] = 47002, + [SMALL_STATE(1606)] = 47009, + [SMALL_STATE(1607)] = 47016, + [SMALL_STATE(1608)] = 47023, + [SMALL_STATE(1609)] = 47030, + [SMALL_STATE(1610)] = 47037, + [SMALL_STATE(1611)] = 47044, + [SMALL_STATE(1612)] = 47051, + [SMALL_STATE(1613)] = 47058, + [SMALL_STATE(1614)] = 47065, + [SMALL_STATE(1615)] = 47072, + [SMALL_STATE(1616)] = 47079, + [SMALL_STATE(1617)] = 47086, + [SMALL_STATE(1618)] = 47093, + [SMALL_STATE(1619)] = 47100, + [SMALL_STATE(1620)] = 47107, + [SMALL_STATE(1621)] = 47114, + [SMALL_STATE(1622)] = 47121, + [SMALL_STATE(1623)] = 47128, + [SMALL_STATE(1624)] = 47135, + [SMALL_STATE(1625)] = 47142, + [SMALL_STATE(1626)] = 47149, + [SMALL_STATE(1627)] = 47156, + [SMALL_STATE(1628)] = 47163, + [SMALL_STATE(1629)] = 47170, + [SMALL_STATE(1630)] = 47177, + [SMALL_STATE(1631)] = 47184, + [SMALL_STATE(1632)] = 47191, +}; + +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 = true}}, REDUCE(sym_source_file, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1351), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(61), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(98), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1351), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(113), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(476), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(207), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(485), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(422), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(118), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1356), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(23), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(128), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(478), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1586), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(478), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(473), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(141), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(408), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1585), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1351), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(376), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 87), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 87), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 114), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 104), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 104), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 105), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(962), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(940), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3569] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#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_cairo(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1f4466d --- /dev/null +++ b/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h new file mode 100644 index 0000000..15a3b23 --- /dev/null +++ b/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h new file mode 100644 index 0000000..17f0e94 --- /dev/null +++ b/src/tree_sitter/parser.h @@ -0,0 +1,265 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_