From 0af29dfe3ba51cf55a5554849ad275c47dbdecd3 Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 10 Jun 2024 14:24:33 +0200 Subject: [PATCH 1/4] feat(grammar): add cairo grammar + queries --- .editorconfig | 39 + .gitattributes | 11 + .gitignore | 38 + Cargo.toml | 23 + Makefile | 112 + Package.swift | 47 + binding.gyp | 30 + bindings/c/tree-sitter-cairo.h | 16 + bindings/c/tree-sitter-cairo.pc.in | 11 + bindings/go/binding.go | 13 + bindings/go/binding_test.go | 15 + bindings/go/go.mod | 5 + bindings/node/binding.cc | 20 + bindings/node/index.d.ts | 28 + bindings/node/index.js | 7 + bindings/python/tree_sitter_cairo/__init__.py | 5 + .../python/tree_sitter_cairo/__init__.pyi | 1 + bindings/python/tree_sitter_cairo/binding.c | 27 + bindings/python/tree_sitter_cairo/py.typed | 0 bindings/rust/build.rs | 22 + bindings/rust/lib.rs | 54 + bindings/swift/TreeSitterCairo/cairo.h | 16 + grammar.js | 1129 + package-lock.json | 34 + package.json | 57 + pyproject.toml | 29 + queries/highlights.scm | 368 + queries/indents.scm | 120 + queries/injections.scm | 3 + queries/locals.scm | 25 + queries/textobjects.scm | 73 + setup.py | 60 + src/grammar.json | 5860 ++ src/node-types.json | 3253 + src/parser.c | 69409 ++++++++++++++++ src/tree_sitter/alloc.h | 54 + src/tree_sitter/array.h | 290 + src/tree_sitter/parser.h | 265 + 38 files changed, 81569 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 Makefile create mode 100644 Package.swift create mode 100644 binding.gyp create mode 100644 bindings/c/tree-sitter-cairo.h create mode 100644 bindings/c/tree-sitter-cairo.pc.in create mode 100644 bindings/go/binding.go create mode 100644 bindings/go/binding_test.go create mode 100644 bindings/go/go.mod create mode 100644 bindings/node/binding.cc create mode 100644 bindings/node/index.d.ts create mode 100644 bindings/node/index.js create mode 100644 bindings/python/tree_sitter_cairo/__init__.py create mode 100644 bindings/python/tree_sitter_cairo/__init__.pyi create mode 100644 bindings/python/tree_sitter_cairo/binding.c create mode 100644 bindings/python/tree_sitter_cairo/py.typed create mode 100644 bindings/rust/build.rs create mode 100644 bindings/rust/lib.rs create mode 100644 bindings/swift/TreeSitterCairo/cairo.h create mode 100644 grammar.js create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 pyproject.toml create mode 100644 queries/highlights.scm create mode 100644 queries/indents.scm create mode 100644 queries/injections.scm create mode 100644 queries/locals.scm create mode 100644 queries/textobjects.scm create mode 100644 setup.py create mode 100644 src/grammar.json create mode 100644 src/node-types.json create mode 100644 src/parser.c create mode 100644 src/tree_sitter/alloc.h create mode 100644 src/tree_sitter/array.h create mode 100644 src/tree_sitter/parser.h 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/.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..54a59a3 --- /dev/null +++ b/grammar.js @@ -0,0 +1,1129 @@ +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)), + 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) + ), + + // 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(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..747ac13 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,34 @@ +{ + "name": "tree-sitter-cairo", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-cairo", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "nan": "^2.19.0" + }, + "devDependencies": { + "tree-sitter-cli": "^0.22.6" + } + }, + "node_modules/nan": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz", + "integrity": "sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==" + }, + "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" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..dcaaf36 --- /dev/null +++ b/package.json @@ -0,0 +1,57 @@ +{ + "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": { + "tree-sitter-cli": "^0.22.6", + "prebuildify": "^6.0.0" + }, + "scripts": { + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip" + }, + "tree-sitter": [ + { + "scope": "source.cairo", + "injection-regex": "^cairo$" + } + ] +} 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..0ff24ca --- /dev/null +++ b/queries/indents.scm @@ -0,0 +1,120 @@ +[ + (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) + (token_tree_pattern) + (token_repetition) +] @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..06f448a --- /dev/null +++ b/src/grammar.json @@ -0,0 +1,5860 @@ +{ + "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": "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": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "shorthand_field_initializer" + }, + { + "type": "SYMBOL", + "name": "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" + } + } + ] + }, + "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": "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..0a6330e --- /dev/null +++ b/src/node-types.json @@ -0,0 +1,3253 @@ +[ + { + "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": "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": "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": "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..6c8b6fe --- /dev/null +++ b/src/parser.c @@ -0,0 +1,69409 @@ +#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 1631 +#define LARGE_STATE_COUNT 220 +#define SYMBOL_COUNT 229 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 103 +#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 = 71, + anon_sym_EQ_GT = 72, + anon_sym_QMARK = 73, + anon_sym_break = 74, + anon_sym_continue = 75, + anon_sym_default = 76, + anon_sym_if = 77, + anon_sym_extern = 78, + anon_sym_nopanic = 79, + anon_sym_loop = 80, + anon_sym_match = 81, + anon_sym_pub = 82, + anon_sym_return = 83, + anon_sym_static = 84, + anon_sym_while = 85, + sym_numeric_literal = 86, + aux_sym_string_literal_token1 = 87, + aux_sym_string_literal_token2 = 88, + anon_sym_DQUOTE = 89, + sym_shortstring_literal = 90, + anon_sym_true = 91, + anon_sym_false = 92, + anon_sym_DOLLAR = 93, + anon_sym_LT2 = 94, + anon_sym_else = 95, + anon_sym_ref = 96, + sym_identifier = 97, + anon_sym_in = 98, + sym_mutable_specifier = 99, + sym_super = 100, + sym_crate = 101, + sym_line_comment = 102, + sym_source_file = 103, + sym__statement = 104, + sym_declaration_list = 105, + sym_impl_item = 106, + sym_trait_item = 107, + sym_associated_type = 108, + sym_const_item = 109, + sym_macro_invocation = 110, + sym_empty_statement = 111, + sym_attribute_item = 112, + sym_inner_attribute_item = 113, + sym_attribute = 114, + sym_mod_item = 115, + sym_struct_item = 116, + sym_enum_item = 117, + sym_enum_variant_list = 118, + sym_enum_variant = 119, + sym_field_declaration_list = 120, + sym_field_declaration = 121, + sym_type_item = 122, + sym_extern_type = 123, + sym_external_function_item = 124, + sym_function_item = 125, + sym_function_signature_item = 126, + sym_function = 127, + sym_let_declaration = 128, + sym_use_declaration = 129, + sym__use_clause = 130, + sym_scoped_use_list = 131, + sym_use_list = 132, + sym_use_as_clause = 133, + sym_use_wildcard = 134, + sym_parameters = 135, + sym_parameter = 136, + sym__type = 137, + sym_type_parameters = 138, + sym_const_parameter = 139, + sym_constrained_type_parameter = 140, + sym_generic_type = 141, + sym_generic_type_with_turbofish = 142, + sym_array_type = 143, + sym_delim_token_tree = 144, + sym__delim_tokens = 145, + sym__pattern = 146, + sym_tuple_pattern = 147, + sym_slice_pattern = 148, + sym_struct_pattern = 149, + sym_field_pattern = 150, + sym_field_initializer_list = 151, + sym_shorthand_field_initializer = 152, + sym_field_initializer = 153, + sym_mut_pattern = 154, + sym_or_pattern = 155, + sym__literal = 156, + sym__literal_pattern = 157, + sym_negative_literal = 158, + sym_string_literal = 159, + sym_boolean_literal = 160, + sym__non_delim_token = 161, + sym_scoped_identifier = 162, + sym_scoped_type_identifier_in_expression_position = 163, + sym_scoped_type_identifier = 164, + sym_tuple_type = 165, + sym_unit_type = 166, + sym_type_arguments = 167, + sym_expression_statement = 168, + sym_expression = 169, + sym_generic_function = 170, + sym_tuple_expression = 171, + sym_return_expression = 172, + sym_struct_expression = 173, + sym_assignment_expression = 174, + sym_break_expression = 175, + sym_continue_expression = 176, + sym_index_expression = 177, + sym_array_expression = 178, + sym_parenthesized_expression = 179, + sym_unit_expression = 180, + sym_compound_assignment_expr = 181, + sym__expression_ending_with_block = 182, + sym_unary_expression = 183, + sym_try_expression = 184, + sym_field_expression = 185, + sym_block = 186, + sym_if_expression = 187, + sym__condition = 188, + sym_let_condition = 189, + sym_else_clause = 190, + sym_match_expression = 191, + sym_match_block = 192, + sym_match_arm = 193, + sym_last_match_arm = 194, + sym_tuple_enum_pattern = 195, + sym_match_pattern = 196, + sym_while_expression = 197, + sym_loop_expression = 198, + sym_binary_expression = 199, + sym_snapshot_type = 200, + sym_call_expression = 201, + sym_arguments = 202, + sym_named_argument = 203, + sym_reference_expression = 204, + sym_visibility_modifier = 205, + sym_extern = 206, + sym_nopanic = 207, + sym_ref_specifier = 208, + aux_sym_source_file_repeat1 = 209, + aux_sym_declaration_list_repeat1 = 210, + aux_sym_enum_variant_list_repeat1 = 211, + aux_sym_enum_variant_list_repeat2 = 212, + aux_sym_field_declaration_list_repeat1 = 213, + aux_sym_function_repeat1 = 214, + aux_sym_use_list_repeat1 = 215, + aux_sym_parameters_repeat1 = 216, + aux_sym_type_parameters_repeat1 = 217, + aux_sym_delim_token_tree_repeat1 = 218, + aux_sym__non_special_token_repeat1 = 219, + aux_sym_tuple_pattern_repeat1 = 220, + aux_sym_struct_pattern_repeat1 = 221, + aux_sym_field_initializer_list_repeat1 = 222, + aux_sym_type_arguments_repeat1 = 223, + aux_sym_tuple_expression_repeat1 = 224, + aux_sym_array_expression_repeat1 = 225, + aux_sym_match_block_repeat1 = 226, + aux_sym_match_arm_repeat1 = 227, + aux_sym_arguments_repeat1 = 228, + alias_sym_field_identifier = 229, + alias_sym_primitive_type = 230, + alias_sym_shorthand_field_identifier = 231, + alias_sym_type_identifier = 232, +}; + +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] = ".", + [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_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] = 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_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] = { + .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_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] = 13, + [20] = 4, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 25, + [29] = 29, + [30] = 27, + [31] = 27, + [32] = 32, + [33] = 25, + [34] = 26, + [35] = 29, + [36] = 32, + [37] = 24, + [38] = 27, + [39] = 27, + [40] = 29, + [41] = 24, + [42] = 24, + [43] = 26, + [44] = 32, + [45] = 32, + [46] = 26, + [47] = 32, + [48] = 26, + [49] = 25, + [50] = 29, + [51] = 25, + [52] = 24, + [53] = 29, + [54] = 21, + [55] = 22, + [56] = 21, + [57] = 22, + [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] = 64, + [72] = 62, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 77, + [85] = 73, + [86] = 69, + [87] = 87, + [88] = 88, + [89] = 87, + [90] = 90, + [91] = 91, + [92] = 91, + [93] = 93, + [94] = 94, + [95] = 88, + [96] = 94, + [97] = 93, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 100, + [102] = 102, + [103] = 103, + [104] = 98, + [105] = 102, + [106] = 103, + [107] = 107, + [108] = 108, + [109] = 108, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 112, + [114] = 114, + [115] = 114, + [116] = 111, + [117] = 110, + [118] = 118, + [119] = 118, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 120, + [125] = 125, + [126] = 120, + [127] = 121, + [128] = 121, + [129] = 120, + [130] = 130, + [131] = 130, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 132, + [136] = 134, + [137] = 133, + [138] = 138, + [139] = 139, + [140] = 139, + [141] = 139, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 145, + [152] = 142, + [153] = 142, + [154] = 154, + [155] = 154, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 161, + [163] = 148, + [164] = 143, + [165] = 147, + [166] = 166, + [167] = 146, + [168] = 168, + [169] = 157, + [170] = 170, + [171] = 171, + [172] = 159, + [173] = 150, + [174] = 159, + [175] = 168, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 156, + [180] = 180, + [181] = 158, + [182] = 149, + [183] = 183, + [184] = 184, + [185] = 148, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 186, + [191] = 168, + [192] = 176, + [193] = 193, + [194] = 147, + [195] = 186, + [196] = 196, + [197] = 187, + [198] = 198, + [199] = 146, + [200] = 183, + [201] = 157, + [202] = 183, + [203] = 144, + [204] = 204, + [205] = 178, + [206] = 158, + [207] = 207, + [208] = 184, + [209] = 209, + [210] = 180, + [211] = 198, + [212] = 160, + [213] = 213, + [214] = 176, + [215] = 154, + [216] = 145, + [217] = 150, + [218] = 149, + [219] = 219, + [220] = 62, + [221] = 81, + [222] = 76, + [223] = 73, + [224] = 69, + [225] = 77, + [226] = 64, + [227] = 83, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 73, + [233] = 233, + [234] = 77, + [235] = 77, + [236] = 236, + [237] = 69, + [238] = 73, + [239] = 233, + [240] = 240, + [241] = 231, + [242] = 69, + [243] = 75, + [244] = 244, + [245] = 73, + [246] = 69, + [247] = 77, + [248] = 82, + [249] = 249, + [250] = 74, + [251] = 70, + [252] = 68, + [253] = 79, + [254] = 254, + [255] = 78, + [256] = 80, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 336, + [340] = 336, + [341] = 341, + [342] = 342, + [343] = 341, + [344] = 341, + [345] = 345, + [346] = 345, + [347] = 345, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 351, + [355] = 355, + [356] = 355, + [357] = 353, + [358] = 352, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 360, + [363] = 363, + [364] = 364, + [365] = 361, + [366] = 359, + [367] = 367, + [368] = 368, + [369] = 364, + [370] = 368, + [371] = 371, + [372] = 371, + [373] = 363, + [374] = 367, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 375, + [379] = 376, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 377, + [386] = 384, + [387] = 387, + [388] = 388, + [389] = 380, + [390] = 381, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 393, + [395] = 393, + [396] = 396, + [397] = 396, + [398] = 396, + [399] = 399, + [400] = 399, + [401] = 401, + [402] = 399, + [403] = 319, + [404] = 404, + [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] = 69, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 77, + [425] = 73, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 66, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [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] = 473, + [474] = 474, + [475] = 63, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 60, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 284, + [487] = 263, + [488] = 312, + [489] = 272, + [490] = 411, + [491] = 305, + [492] = 329, + [493] = 291, + [494] = 275, + [495] = 495, + [496] = 334, + [497] = 308, + [498] = 330, + [499] = 331, + [500] = 315, + [501] = 278, + [502] = 300, + [503] = 280, + [504] = 295, + [505] = 310, + [506] = 283, + [507] = 306, + [508] = 335, + [509] = 325, + [510] = 264, + [511] = 328, + [512] = 261, + [513] = 311, + [514] = 301, + [515] = 285, + [516] = 286, + [517] = 333, + [518] = 332, + [519] = 289, + [520] = 320, + [521] = 316, + [522] = 287, + [523] = 523, + [524] = 282, + [525] = 299, + [526] = 259, + [527] = 297, + [528] = 307, + [529] = 298, + [530] = 293, + [531] = 269, + [532] = 322, + [533] = 258, + [534] = 495, + [535] = 317, + [536] = 294, + [537] = 279, + [538] = 268, + [539] = 314, + [540] = 313, + [541] = 309, + [542] = 319, + [543] = 543, + [544] = 321, + [545] = 318, + [546] = 296, + [547] = 543, + [548] = 302, + [549] = 292, + [550] = 257, + [551] = 288, + [552] = 277, + [553] = 276, + [554] = 274, + [555] = 323, + [556] = 273, + [557] = 271, + [558] = 270, + [559] = 267, + [560] = 326, + [561] = 327, + [562] = 281, + [563] = 290, + [564] = 260, + [565] = 304, + [566] = 303, + [567] = 265, + [568] = 266, + [569] = 262, + [570] = 570, + [571] = 416, + [572] = 572, + [573] = 413, + [574] = 574, + [575] = 575, + [576] = 414, + [577] = 577, + [578] = 574, + [579] = 411, + [580] = 577, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 572, + [588] = 417, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 428, + [593] = 593, + [594] = 594, + [595] = 428, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 591, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 594, + [613] = 436, + [614] = 614, + [615] = 417, + [616] = 616, + [617] = 405, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 436, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 598, + [627] = 627, + [628] = 600, + [629] = 629, + [630] = 630, + [631] = 601, + [632] = 603, + [633] = 633, + [634] = 624, + [635] = 598, + [636] = 636, + [637] = 597, + [638] = 596, + [639] = 624, + [640] = 624, + [641] = 598, + [642] = 83, + [643] = 624, + [644] = 435, + [645] = 431, + [646] = 621, + [647] = 618, + [648] = 648, + [649] = 616, + [650] = 624, + [651] = 598, + [652] = 624, + [653] = 653, + [654] = 654, + [655] = 625, + [656] = 598, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 408, + [663] = 406, + [664] = 664, + [665] = 412, + [666] = 666, + [667] = 667, + [668] = 409, + [669] = 614, + [670] = 410, + [671] = 407, + [672] = 602, + [673] = 673, + [674] = 657, + [675] = 598, + [676] = 676, + [677] = 677, + [678] = 594, + [679] = 624, + [680] = 625, + [681] = 623, + [682] = 682, + [683] = 414, + [684] = 598, + [685] = 413, + [686] = 636, + [687] = 610, + [688] = 607, + [689] = 416, + [690] = 666, + [691] = 691, + [692] = 319, + [693] = 468, + [694] = 694, + [695] = 695, + [696] = 470, + [697] = 427, + [698] = 463, + [699] = 319, + [700] = 431, + [701] = 473, + [702] = 702, + [703] = 435, + [704] = 472, + [705] = 433, + [706] = 706, + [707] = 707, + [708] = 479, + [709] = 483, + [710] = 461, + [711] = 460, + [712] = 69, + [713] = 458, + [714] = 714, + [715] = 430, + [716] = 694, + [717] = 482, + [718] = 422, + [719] = 456, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 77, + [724] = 724, + [725] = 722, + [726] = 724, + [727] = 727, + [728] = 728, + [729] = 73, + [730] = 730, + [731] = 437, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 702, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 738, + [740] = 740, + [741] = 429, + [742] = 727, + [743] = 426, + [744] = 293, + [745] = 458, + [746] = 460, + [747] = 732, + [748] = 740, + [749] = 721, + [750] = 461, + [751] = 483, + [752] = 479, + [753] = 437, + [754] = 473, + [755] = 482, + [756] = 470, + [757] = 468, + [758] = 463, + [759] = 759, + [760] = 730, + [761] = 456, + [762] = 728, + [763] = 419, + [764] = 737, + [765] = 472, + [766] = 66, + [767] = 82, + [768] = 452, + [769] = 78, + [770] = 455, + [771] = 79, + [772] = 447, + [773] = 440, + [774] = 68, + [775] = 444, + [776] = 474, + [777] = 80, + [778] = 469, + [779] = 74, + [780] = 476, + [781] = 445, + [782] = 462, + [783] = 783, + [784] = 451, + [785] = 439, + [786] = 484, + [787] = 438, + [788] = 457, + [789] = 70, + [790] = 478, + [791] = 464, + [792] = 477, + [793] = 449, + [794] = 466, + [795] = 481, + [796] = 443, + [797] = 75, + [798] = 454, + [799] = 441, + [800] = 465, + [801] = 467, + [802] = 442, + [803] = 471, + [804] = 446, + [805] = 60, + [806] = 806, + [807] = 459, + [808] = 63, + [809] = 448, + [810] = 450, + [811] = 485, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 815, + [817] = 817, + [818] = 814, + [819] = 382, + [820] = 319, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 822, + [825] = 823, + [826] = 823, + [827] = 823, + [828] = 823, + [829] = 823, + [830] = 823, + [831] = 822, + [832] = 823, + [833] = 833, + [834] = 833, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 836, + [841] = 835, + [842] = 837, + [843] = 409, + [844] = 410, + [845] = 405, + [846] = 407, + [847] = 838, + [848] = 848, + [849] = 62, + [850] = 850, + [851] = 64, + [852] = 81, + [853] = 853, + [854] = 854, + [855] = 850, + [856] = 76, + [857] = 857, + [858] = 837, + [859] = 859, + [860] = 860, + [861] = 835, + [862] = 838, + [863] = 863, + [864] = 864, + [865] = 836, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 872, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 876, + [888] = 888, + [889] = 888, + [890] = 890, + [891] = 890, + [892] = 839, + [893] = 893, + [894] = 872, + [895] = 895, + [896] = 896, + [897] = 879, + [898] = 893, + [899] = 66, + [900] = 896, + [901] = 895, + [902] = 63, + [903] = 903, + [904] = 67, + [905] = 905, + [906] = 906, + [907] = 835, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 836, + [919] = 837, + [920] = 920, + [921] = 921, + [922] = 838, + [923] = 923, + [924] = 924, + [925] = 917, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 923, + [939] = 939, + [940] = 940, + [941] = 928, + [942] = 910, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 926, + [948] = 879, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 944, + [954] = 954, + [955] = 955, + [956] = 854, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 854, + [963] = 963, + [964] = 955, + [965] = 854, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 407, + [971] = 410, + [972] = 886, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 870, + [979] = 409, + [980] = 980, + [981] = 870, + [982] = 982, + [983] = 854, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 870, + [988] = 988, + [989] = 405, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 382, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 870, + [1008] = 1008, + [1009] = 382, + [1010] = 1010, + [1011] = 992, + [1012] = 1012, + [1013] = 993, + [1014] = 1012, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 408, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1002, + [1026] = 1026, + [1027] = 1008, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1010, + [1032] = 1032, + [1033] = 412, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 406, + [1038] = 1038, + [1039] = 1039, + [1040] = 1029, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1048, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1051, + [1057] = 1057, + [1058] = 1057, + [1059] = 1059, + [1060] = 1060, + [1061] = 1051, + [1062] = 1053, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1060, + [1067] = 1067, + [1068] = 1053, + [1069] = 1067, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1041, + [1075] = 1064, + [1076] = 1076, + [1077] = 1077, + [1078] = 1060, + [1079] = 1073, + [1080] = 1080, + [1081] = 1081, + [1082] = 1067, + [1083] = 1083, + [1084] = 1077, + [1085] = 1049, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1070, + [1090] = 1043, + [1091] = 1091, + [1092] = 1050, + [1093] = 1042, + [1094] = 1087, + [1095] = 1042, + [1096] = 1091, + [1097] = 1086, + [1098] = 1083, + [1099] = 1099, + [1100] = 903, + [1101] = 1101, + [1102] = 1067, + [1103] = 1060, + [1104] = 1104, + [1105] = 1043, + [1106] = 1101, + [1107] = 1107, + [1108] = 1053, + [1109] = 1088, + [1110] = 1043, + [1111] = 1091, + [1112] = 1087, + [1113] = 1067, + [1114] = 1060, + [1115] = 1053, + [1116] = 1063, + [1117] = 1067, + [1118] = 1065, + [1119] = 1119, + [1120] = 1055, + [1121] = 1076, + [1122] = 1060, + [1123] = 1053, + [1124] = 1045, + [1125] = 1054, + [1126] = 1067, + [1127] = 1099, + [1128] = 1060, + [1129] = 1053, + [1130] = 1047, + [1131] = 1083, + [1132] = 1086, + [1133] = 1059, + [1134] = 1087, + [1135] = 1135, + [1136] = 1136, + [1137] = 1091, + [1138] = 1050, + [1139] = 993, + [1140] = 1081, + [1141] = 952, + [1142] = 1142, + [1143] = 1143, + [1144] = 319, + [1145] = 1145, + [1146] = 1081, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1055, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 63, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 81, + [1166] = 1143, + [1167] = 951, + [1168] = 66, + [1169] = 76, + [1170] = 939, + [1171] = 905, + [1172] = 1172, + [1173] = 1173, + [1174] = 1150, + [1175] = 931, + [1176] = 924, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 62, + [1185] = 64, + [1186] = 1186, + [1187] = 1187, + [1188] = 933, + [1189] = 319, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 935, + [1194] = 1194, + [1195] = 915, + [1196] = 1178, + [1197] = 1197, + [1198] = 995, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1158, + [1207] = 1207, + [1208] = 1172, + [1209] = 1209, + [1210] = 67, + [1211] = 950, + [1212] = 1151, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 920, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 912, + [1222] = 934, + [1223] = 1215, + [1224] = 1224, + [1225] = 936, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 908, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 906, + [1240] = 1154, + [1241] = 909, + [1242] = 1183, + [1243] = 911, + [1244] = 949, + [1245] = 1245, + [1246] = 1158, + [1247] = 1197, + [1248] = 945, + [1249] = 1207, + [1250] = 943, + [1251] = 1204, + [1252] = 940, + [1253] = 1253, + [1254] = 1254, + [1255] = 1209, + [1256] = 1256, + [1257] = 1257, + [1258] = 1205, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 913, + [1264] = 1264, + [1265] = 914, + [1266] = 1266, + [1267] = 916, + [1268] = 1268, + [1269] = 921, + [1270] = 929, + [1271] = 1271, + [1272] = 1272, + [1273] = 930, + [1274] = 1274, + [1275] = 1275, + [1276] = 1164, + [1277] = 1163, + [1278] = 1278, + [1279] = 1279, + [1280] = 1145, + [1281] = 1281, + [1282] = 1282, + [1283] = 1177, + [1284] = 1201, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1181, + [1292] = 1275, + [1293] = 1293, + [1294] = 1187, + [1295] = 1253, + [1296] = 1296, + [1297] = 1172, + [1298] = 1298, + [1299] = 1296, + [1300] = 1289, + [1301] = 1287, + [1302] = 1302, + [1303] = 1190, + [1304] = 1304, + [1305] = 1186, + [1306] = 1179, + [1307] = 1307, + [1308] = 1308, + [1309] = 1155, + [1310] = 1285, + [1311] = 1152, + [1312] = 1151, + [1313] = 1173, + [1314] = 1314, + [1315] = 1304, + [1316] = 1194, + [1317] = 1272, + [1318] = 1281, + [1319] = 1319, + [1320] = 932, + [1321] = 937, + [1322] = 1322, + [1323] = 1227, + [1324] = 1231, + [1325] = 1268, + [1326] = 1232, + [1327] = 1233, + [1328] = 1235, + [1329] = 1142, + [1330] = 1262, + [1331] = 1266, + [1332] = 1282, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1337, + [1343] = 1337, + [1344] = 1344, + [1345] = 1345, + [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] = 867, + [1361] = 1361, + [1362] = 1362, + [1363] = 60, + [1364] = 1362, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1345, + [1372] = 1338, + [1373] = 1336, + [1374] = 1333, + [1375] = 1375, + [1376] = 1376, + [1377] = 1355, + [1378] = 1335, + [1379] = 1339, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1351, + [1388] = 1334, + [1389] = 1389, + [1390] = 1389, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1367, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 1362, + [1403] = 1403, + [1404] = 1359, + [1405] = 1405, + [1406] = 1393, + [1407] = 1349, + [1408] = 1354, + [1409] = 1391, + [1410] = 1410, + [1411] = 1380, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1414, + [1418] = 1418, + [1419] = 1419, + [1420] = 1415, + [1421] = 1410, + [1422] = 1412, + [1423] = 1423, + [1424] = 1424, + [1425] = 1391, + [1426] = 1426, + [1427] = 1412, + [1428] = 1389, + [1429] = 1380, + [1430] = 1430, + [1431] = 1431, + [1432] = 1415, + [1433] = 1414, + [1434] = 1434, + [1435] = 1435, + [1436] = 1381, + [1437] = 1437, + [1438] = 1395, + [1439] = 1439, + [1440] = 1410, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1389, + [1445] = 1391, + [1446] = 1380, + [1447] = 1369, + [1448] = 1405, + [1449] = 1380, + [1450] = 1354, + [1451] = 1415, + [1452] = 1375, + [1453] = 1453, + [1454] = 1389, + [1455] = 1391, + [1456] = 1391, + [1457] = 1457, + [1458] = 1349, + [1459] = 1389, + [1460] = 1460, + [1461] = 1361, + [1462] = 1462, + [1463] = 1463, + [1464] = 1439, + [1465] = 1401, + [1466] = 1341, + [1467] = 1380, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1473, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1473, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1471, + [1488] = 1488, + [1489] = 1489, + [1490] = 1473, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1473, + [1501] = 1501, + [1502] = 1471, + [1503] = 1470, + [1504] = 1504, + [1505] = 1473, + [1506] = 1506, + [1507] = 1507, + [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] = 1517, + [1521] = 1473, + [1522] = 1522, + [1523] = 873, + [1524] = 1524, + [1525] = 1471, + [1526] = 1526, + [1527] = 1527, + [1528] = 1471, + [1529] = 1529, + [1530] = 1530, + [1531] = 1516, + [1532] = 1495, + [1533] = 1472, + [1534] = 1534, + [1535] = 1485, + [1536] = 1468, + [1537] = 1481, + [1538] = 1480, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1473, + [1543] = 1488, + [1544] = 1491, + [1545] = 1513, + [1546] = 1546, + [1547] = 1527, + [1548] = 1522, + [1549] = 1541, + [1550] = 1515, + [1551] = 1551, + [1552] = 1552, + [1553] = 1496, + [1554] = 1554, + [1555] = 1499, + [1556] = 1556, + [1557] = 1557, + [1558] = 1554, + [1559] = 1559, + [1560] = 1495, + [1561] = 1561, + [1562] = 1562, + [1563] = 1498, + [1564] = 1564, + [1565] = 1526, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1494, + [1572] = 1572, + [1573] = 1569, + [1574] = 1574, + [1575] = 1575, + [1576] = 1497, + [1577] = 1577, + [1578] = 1578, + [1579] = 1551, + [1580] = 1580, + [1581] = 1529, + [1582] = 1582, + [1583] = 1519, + [1584] = 1518, + [1585] = 1518, + [1586] = 1519, + [1587] = 1587, + [1588] = 1588, + [1589] = 1527, + [1590] = 1470, + [1591] = 1591, + [1592] = 1497, + [1593] = 1534, + [1594] = 1577, + [1595] = 1595, + [1596] = 1510, + [1597] = 1518, + [1598] = 1509, + [1599] = 1559, + [1600] = 1527, + [1601] = 1570, + [1602] = 1518, + [1603] = 1508, + [1604] = 1527, + [1605] = 1605, + [1606] = 1527, + [1607] = 1607, + [1608] = 1507, + [1609] = 1552, + [1610] = 881, + [1611] = 1567, + [1612] = 1566, + [1613] = 1564, + [1614] = 1506, + [1615] = 1478, + [1616] = 883, + [1617] = 1540, + [1618] = 1591, + [1619] = 1493, + [1620] = 1568, + [1621] = 1556, + [1622] = 1566, + [1623] = 1564, + [1624] = 1564, + [1625] = 1564, + [1626] = 1489, + [1627] = 1607, + [1628] = 1486, + [1629] = 1484, + [1630] = 1483, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(247); + ADVANCE_MAP( + '!', 266, + '"', 395, + '#', 267, + '$', 402, + '%', 331, + '&', 336, + '\'', 24, + '(', 289, + ')', 292, + '*', 288, + '+', 326, + ',', 276, + '-', 329, + '.', 357, + '/', 330, + '0', 385, + ':', 261, + ';', 253, + '<', 403, + '=', 264, + '>', 324, + '?', 359, + '@', 356, + 'B', 204, + '[', 268, + ']', 269, + '^', 333, + '_', 290, + 'a', 177, + 'b', 19, + 'c', 18, + 'd', 121, + 'e', 147, + 'f', 92, + 'i', 61, + 'l', 122, + 'm', 97, + 'n', 162, + 'o', 128, + 'p', 198, + 'r', 108, + 's', 182, + 't', 171, + 'u', 62, + 'w', 133, + '{', 248, + '|', 338, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + END_STATE(); + case 1: + ADVANCE_MAP( + '!', 266, + '"', 390, + '#', 267, + '$', 402, + '%', 331, + '&', 336, + '\'', 24, + '(', 289, + ')', 292, + '*', 288, + '+', 326, + ',', 276, + '-', 329, + '.', 357, + '/', 330, + '0', 385, + ':', 261, + ';', 253, + '<', 322, + '=', 264, + '>', 324, + '?', 359, + '@', 356, + 'B', 548, + '[', 268, + ']', 269, + '^', 333, + '_', 291, + 'b', 408, + 'c', 410, + 'd', 450, + 'e', 494, + 'f', 431, + 'i', 413, + 'l', 462, + 'm', 437, + 'n', 504, + 'p', 539, + 'r', 469, + 's', 531, + 't', 511, + 'u', 417, + 'w', 473, + '{', 248, + '|', 338, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(1); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 2: + ADVANCE_MAP( + '!', 266, + '"', 390, + '%', 331, + '&', 335, + '\'', 24, + '(', 289, + ')', 292, + '*', 288, + '+', 326, + ',', 276, + '-', 328, + '.', 357, + '/', 330, + '0', 385, + ':', 261, + ';', 253, + '<', 322, + '=', 263, + '>', 324, + '?', 359, + '@', 356, + 'B', 548, + '[', 268, + ']', 269, + '^', 332, + 'b', 408, + 'c', 411, + 'd', 450, + 'f', 432, + 'i', 414, + 'l', 501, + 'm', 440, + 'r', 451, + 's', 541, + 't', 519, + 'u', 418, + 'w', 473, + '{', 248, + '|', 339, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(2); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 3: + ADVANCE_MAP( + '!', 266, + '"', 390, + '%', 331, + '&', 335, + '\'', 24, + '(', 289, + '*', 288, + '+', 326, + '-', 328, + '.', 357, + '/', 330, + '0', 385, + ':', 87, + '<', 322, + '=', 264, + '>', 324, + '?', 359, + '@', 356, + 'B', 548, + '[', 268, + '^', 332, + 'b', 408, + 'c', 411, + 'd', 450, + 'f', 432, + 'i', 414, + 'l', 501, + 'm', 440, + 'r', 451, + 's', 541, + 't', 519, + 'u', 418, + 'w', 473, + '{', 248, + '|', 339, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 4: + ADVANCE_MAP( + '!', 266, + '%', 331, + '&', 335, + '(', 289, + ')', 292, + '*', 288, + '+', 326, + ',', 276, + '-', 328, + '.', 357, + '/', 330, + ':', 87, + ';', 253, + '<', 322, + '=', 263, + '>', 324, + '?', 359, + '[', 268, + ']', 269, + '^', 332, + 'a', 177, + 'e', 146, + 'i', 156, + 'n', 162, + '{', 248, + '|', 339, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(4); + END_STATE(); + case 5: + ADVANCE_MAP( + '!', 265, + '"', 390, + '#', 267, + '\'', 24, + '(', 289, + ')', 292, + '*', 287, + ',', 276, + '-', 327, + '/', 60, + '0', 385, + ':', 261, + ';', 253, + '<', 321, + '=', 262, + '@', 356, + 'B', 548, + '[', 268, + ']', 269, + 'b', 408, + 'c', 411, + 'd', 450, + 'f', 432, + 'i', 414, + 'l', 501, + 'm', 440, + 'r', 451, + 's', 541, + 't', 519, + 'u', 418, + 'w', 473, + '{', 248, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 6: + ADVANCE_MAP( + '!', 265, + '"', 390, + '\'', 24, + '(', 289, + '*', 287, + '-', 327, + '/', 60, + '0', 385, + ':', 87, + '@', 356, + 'B', 548, + '[', 268, + 'b', 408, + 'c', 411, + 'd', 450, + 'f', 432, + 'i', 414, + 'l', 462, + 'm', 440, + 'r', 451, + 's', 541, + 't', 519, + 'u', 418, + 'w', 473, + '{', 248, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 7: + ADVANCE_MAP( + '!', 265, + '"', 390, + '\'', 24, + '(', 289, + '*', 287, + '-', 327, + '/', 60, + '0', 385, + ':', 87, + '@', 356, + 'B', 548, + '[', 268, + 'b', 408, + 'c', 411, + 'd', 450, + 'f', 432, + 'i', 414, + 'l', 501, + 'm', 439, + 'r', 451, + 's', 541, + 't', 519, + 'u', 418, + 'w', 473, + '{', 248, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(7); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 8: + ADVANCE_MAP( + '!', 265, + '(', 289, + ')', 292, + ',', 276, + '-', 89, + '/', 60, + ':', 261, + ';', 253, + '<', 403, + '=', 262, + '>', 323, + ']', 269, + 'i', 156, + 'n', 162, + 'o', 128, + '{', 248, + '|', 337, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(8); + END_STATE(); + case 9: + ADVANCE_MAP( + '!', 265, + '(', 289, + ',', 276, + '/', 60, + ':', 87, + ';', 253, + '<', 403, + '=', 90, + ']', 269, + 'i', 127, + '{', 248, + '|', 337, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(9); + END_STATE(); + case 10: + ADVANCE_MAP( + '!', 88, + '"', 395, + '#', 267, + '%', 331, + '&', 335, + '(', 289, + '*', 288, + '+', 326, + '-', 328, + '.', 357, + '/', 330, + ':', 87, + ';', 253, + '<', 322, + '=', 264, + '>', 324, + '?', 359, + 'B', 548, + '[', 268, + '^', 332, + 'b', 499, + 'c', 505, + 'd', 450, + 'e', 494, + 'f', 465, + 'i', 415, + 'l', 463, + 'm', 500, + 'p', 539, + 's', 524, + 't', 518, + 'u', 417, + '|', 339, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 11: + ADVANCE_MAP( + '!', 88, + '"', 390, + '#', 267, + '%', 331, + '&', 335, + '\'', 24, + '(', 289, + '*', 288, + '+', 326, + ',', 276, + '-', 328, + '.', 357, + '/', 330, + '0', 385, + ':', 87, + '<', 322, + '=', 263, + '>', 324, + '?', 359, + 'B', 548, + '[', 268, + '^', 332, + '_', 291, + 'b', 409, + 'c', 412, + 'd', 450, + 'e', 489, + 'f', 432, + 'i', 416, + 'm', 544, + 's', 541, + 't', 519, + 'u', 418, + '|', 339, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 12: + ADVANCE_MAP( + '!', 88, + '"', 390, + '#', 267, + '%', 331, + '&', 335, + '\'', 24, + '(', 289, + '*', 288, + '+', 326, + ',', 276, + '-', 328, + '.', 357, + '/', 330, + '0', 385, + ':', 87, + '<', 322, + '=', 263, + '>', 324, + '?', 359, + 'B', 548, + '[', 268, + '^', 332, + '_', 291, + 'b', 409, + 'c', 412, + 'd', 450, + 'f', 432, + 'i', 416, + 'm', 544, + 's', 541, + 't', 519, + 'u', 418, + '|', 339, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 13: + ADVANCE_MAP( + '!', 88, + '#', 267, + '%', 331, + '&', 335, + '(', 289, + '*', 288, + '+', 326, + '-', 328, + '.', 357, + '/', 330, + ':', 87, + ';', 253, + '<', 322, + '=', 264, + '>', 324, + '?', 359, + 'B', 548, + '[', 268, + '^', 332, + 'b', 499, + 'c', 505, + 'd', 450, + 'e', 494, + 'f', 465, + 'i', 415, + 'l', 463, + 'm', 500, + 'p', 539, + 's', 524, + 't', 518, + 'u', 417, + '|', 339, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 14: + ADVANCE_MAP( + '!', 88, + '%', 331, + '&', 335, + '(', 289, + '*', 288, + '+', 326, + ',', 276, + '-', 328, + '.', 357, + '/', 330, + ':', 260, + '<', 322, + '=', 264, + '>', 324, + '?', 359, + '[', 268, + '^', 332, + 'e', 146, + '|', 339, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(14); + END_STATE(); + case 15: + ADVANCE_MAP( + '"', 390, + '#', 267, + '\'', 24, + '(', 289, + ')', 292, + ',', 276, + '-', 327, + '/', 60, + '0', 385, + ':', 87, + '@', 356, + 'B', 548, + '[', 268, + ']', 269, + '_', 291, + 'b', 409, + 'c', 412, + 'd', 450, + 'f', 432, + 'i', 416, + 'm', 544, + 's', 541, + 't', 519, + 'u', 418, + '|', 337, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(15); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 16: + ADVANCE_MAP( + '"', 390, + '#', 267, + '\'', 24, + '(', 289, + ')', 292, + ',', 276, + '-', 327, + '/', 60, + '0', 385, + ':', 87, + '@', 356, + 'B', 548, + '[', 268, + '_', 291, + 'b', 409, + 'c', 412, + 'd', 450, + 'f', 432, + 'i', 416, + 'm', 544, + 'r', 464, + 's', 541, + 't', 519, + 'u', 418, + '|', 337, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(16); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 17: + ADVANCE_MAP( + '"', 390, + '\'', 24, + '(', 289, + '-', 327, + '/', 60, + '0', 385, + ':', 87, + '>', 323, + '@', 356, + 'B', 548, + '[', 268, + 'b', 409, + 'c', 412, + 'd', 450, + 'f', 432, + 'i', 416, + 's', 541, + 't', 519, + 'u', 418, + '{', 248, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(17); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(390); + if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'r') ADVANCE(100); + END_STATE(); + case 19: + if (lookahead == '"') ADVANCE(390); + if (lookahead == 'o') ADVANCE(163); + if (lookahead == 'r') ADVANCE(123); + END_STATE(); + case 20: + if (lookahead == '#') ADVANCE(267); + if (lookahead == '(') ADVANCE(289); + if (lookahead == ',') ADVANCE(276); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '0') ADVANCE(385); + if (lookahead == '}') ADVANCE(249); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(20); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 21: + ADVANCE_MAP( + '#', 267, + '+', 325, + '-', 327, + '/', 60, + ':', 87, + '>', 323, + 'B', 548, + 'b', 499, + 'c', 505, + 'd', 450, + 'f', 466, + 'i', 415, + 's', 541, + 'u', 418, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(21); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 22: + if (lookahead == '#') ADVANCE(267); + if (lookahead == ',') ADVANCE(276); + if (lookahead == '/') ADVANCE(60); + if (lookahead == 'p') ADVANCE(539); + if (lookahead == '}') ADVANCE(249); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 23: + if (lookahead == '\'') ADVANCE(397); + END_STATE(); + case 24: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(242); + if (lookahead != 0) ADVANCE(54); + END_STATE(); + case 25: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(213); + if (lookahead != 0) ADVANCE(26); + END_STATE(); + case 26: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(211); + if (lookahead != 0) ADVANCE(23); + END_STATE(); + case 27: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(214); + if (lookahead != 0) ADVANCE(25); + END_STATE(); + case 28: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(215); + if (lookahead != 0) ADVANCE(27); + END_STATE(); + case 29: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(216); + if (lookahead != 0) ADVANCE(28); + END_STATE(); + case 30: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(217); + if (lookahead != 0) ADVANCE(29); + END_STATE(); + case 31: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(218); + if (lookahead != 0) ADVANCE(30); + END_STATE(); + case 32: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(219); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 33: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(220); + if (lookahead != 0) ADVANCE(32); + END_STATE(); + case 34: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(221); + if (lookahead != 0) ADVANCE(33); + END_STATE(); + case 35: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(222); + if (lookahead != 0) ADVANCE(34); + END_STATE(); + case 36: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(223); + if (lookahead != 0) ADVANCE(35); + END_STATE(); + case 37: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(224); + if (lookahead != 0) ADVANCE(36); + END_STATE(); + case 38: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0) ADVANCE(37); + END_STATE(); + case 39: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(226); + if (lookahead != 0) ADVANCE(38); + END_STATE(); + case 40: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(227); + if (lookahead != 0) ADVANCE(39); + END_STATE(); + case 41: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(228); + if (lookahead != 0) ADVANCE(40); + END_STATE(); + case 42: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(229); + if (lookahead != 0) ADVANCE(41); + END_STATE(); + case 43: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(230); + if (lookahead != 0) ADVANCE(42); + END_STATE(); + case 44: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(231); + if (lookahead != 0) ADVANCE(43); + END_STATE(); + case 45: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(232); + if (lookahead != 0) ADVANCE(44); + END_STATE(); + case 46: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(233); + if (lookahead != 0) ADVANCE(45); + END_STATE(); + case 47: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(234); + if (lookahead != 0) ADVANCE(46); + END_STATE(); + case 48: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(235); + if (lookahead != 0) ADVANCE(47); + END_STATE(); + case 49: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(236); + if (lookahead != 0) ADVANCE(48); + END_STATE(); + case 50: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(237); + if (lookahead != 0) ADVANCE(49); + END_STATE(); + case 51: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(238); + if (lookahead != 0) ADVANCE(50); + END_STATE(); + case 52: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(239); + if (lookahead != 0) ADVANCE(51); + END_STATE(); + case 53: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(240); + if (lookahead != 0) ADVANCE(52); + END_STATE(); + case 54: + if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\\') ADVANCE(241); + if (lookahead != 0) ADVANCE(53); + END_STATE(); + case 55: + ADVANCE_MAP( + '(', 289, + ')', 292, + '*', 287, + ',', 276, + '/', 60, + ':', 87, + '@', 356, + 'B', 548, + '[', 268, + 'b', 499, + 'd', 450, + 'f', 466, + 'i', 416, + 's', 541, + 'u', 418, + '{', 248, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 56: + ADVANCE_MAP( + '(', 289, + '/', 60, + ':', 87, + ';', 253, + '@', 356, + 'B', 548, + '[', 268, + 'b', 499, + 'd', 450, + 'f', 466, + 'i', 416, + 'n', 504, + 's', 541, + 'u', 418, + '{', 248, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 57: + ADVANCE_MAP( + ')', 292, + ',', 276, + '/', 60, + ':', 260, + ';', 253, + '<', 321, + '=', 262, + '>', 323, + ']', 269, + 'i', 156, + 'n', 162, + 'o', 128, + '{', 248, + '|', 337, + '}', 249, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(57); + END_STATE(); + case 58: + if (lookahead == '*') ADVANCE(287); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '<') ADVANCE(403); + if (lookahead == 's') ADVANCE(541); + if (lookahead == '{') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(58); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 59: + if (lookahead == ',') ADVANCE(276); + if (lookahead == '/') ADVANCE(60); + if (lookahead == 'm') ADVANCE(544); + if (lookahead == '}') ADVANCE(249); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(59); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 60: + if (lookahead == '/') ADVANCE(558); + END_STATE(); + case 61: + if (lookahead == '1') ADVANCE(65); + if (lookahead == '3') ADVANCE(66); + if (lookahead == '6') ADVANCE(76); + if (lookahead == '8') ADVANCE(295); + if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'm') ADVANCE(167); + if (lookahead == 'n') ADVANCE(552); + END_STATE(); + case 62: + if (lookahead == '1') ADVANCE(71); + if (lookahead == '3') ADVANCE(67); + if (lookahead == '6') ADVANCE(77); + if (lookahead == '8') ADVANCE(293); + if (lookahead == 's') ADVANCE(109); + END_STATE(); + case 63: + if (lookahead == '1') ADVANCE(73); + if (lookahead == '2') ADVANCE(79); + if (lookahead == '3') ADVANCE(68); + if (lookahead == '6') ADVANCE(78); + if (lookahead == '8') ADVANCE(384); + if (lookahead == 's') ADVANCE(142); + END_STATE(); + case 64: + if (lookahead == '1') ADVANCE(73); + if (lookahead == '3') ADVANCE(68); + if (lookahead == '6') ADVANCE(78); + if (lookahead == '8') ADVANCE(384); + END_STATE(); + case 65: + if (lookahead == '2') ADVANCE(85); + if (lookahead == '6') ADVANCE(299); + END_STATE(); + case 66: + if (lookahead == '2') ADVANCE(303); + END_STATE(); + case 67: + if (lookahead == '2') ADVANCE(301); + END_STATE(); + case 68: + if (lookahead == '2') ADVANCE(384); + END_STATE(); + case 69: + if (lookahead == '2') ADVANCE(319); + END_STATE(); + case 70: + if (lookahead == '2') ADVANCE(396); + END_STATE(); + case 71: + if (lookahead == '2') ADVANCE(86); + if (lookahead == '6') ADVANCE(297); + END_STATE(); + case 72: + if (lookahead == '2') ADVANCE(81); + END_STATE(); + case 73: + if (lookahead == '2') ADVANCE(84); + if (lookahead == '6') ADVANCE(384); + END_STATE(); + case 74: + if (lookahead == '2') ADVANCE(80); + END_STATE(); + case 75: + if (lookahead == '2') ADVANCE(82); + END_STATE(); + case 76: + if (lookahead == '4') ADVANCE(307); + END_STATE(); + case 77: + if (lookahead == '4') ADVANCE(305); + END_STATE(); + case 78: + if (lookahead == '4') ADVANCE(384); + END_STATE(); + case 79: + if (lookahead == '5') ADVANCE(83); + END_STATE(); + case 80: + if (lookahead == '5') ADVANCE(68); + END_STATE(); + case 81: + if (lookahead == '5') ADVANCE(69); + END_STATE(); + case 82: + if (lookahead == '5') ADVANCE(70); + END_STATE(); + case 83: + if (lookahead == '6') ADVANCE(384); + END_STATE(); + case 84: + if (lookahead == '8') ADVANCE(384); + END_STATE(); + case 85: + if (lookahead == '8') ADVANCE(311); + END_STATE(); + case 86: + if (lookahead == '8') ADVANCE(309); + END_STATE(); + case 87: + if (lookahead == ':') ADVANCE(285); + END_STATE(); + case 88: + if (lookahead == '=') ADVANCE(353); + END_STATE(); + case 89: + if (lookahead == '>') ADVANCE(279); + END_STATE(); + case 90: + if (lookahead == '>') ADVANCE(358); + END_STATE(); + case 91: + if (lookahead == 'A') ADVANCE(174); + END_STATE(); + case 92: + if (lookahead == 'a') ADVANCE(152); + if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'n') ADVANCE(277); + END_STATE(); + case 93: + if (lookahead == 'a') ADVANCE(143); + END_STATE(); + case 94: + if (lookahead == 'a') ADVANCE(205); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(161); + END_STATE(); + case 96: + if (lookahead == 'a') ADVANCE(140); + if (lookahead == 'u') ADVANCE(114); + END_STATE(); + case 97: + if (lookahead == 'a') ADVANCE(184); + if (lookahead == 'o') ADVANCE(107); + if (lookahead == 'u') ADVANCE(185); + END_STATE(); + case 98: + if (lookahead == 'a') ADVANCE(203); + END_STATE(); + case 99: + if (lookahead == 'a') ADVANCE(193); + if (lookahead == 'r') ADVANCE(200); + END_STATE(); + case 100: + if (lookahead == 'a') ADVANCE(195); + END_STATE(); + case 101: + if (lookahead == 'b') ADVANCE(376); + END_STATE(); + case 102: + if (lookahead == 'c') ADVANCE(380); + END_STATE(); + case 103: + if (lookahead == 'c') ADVANCE(370); + END_STATE(); + case 104: + if (lookahead == 'c') ADVANCE(134); + END_STATE(); + case 105: + if (lookahead == 'c') ADVANCE(188); + END_STATE(); + case 106: + if (lookahead == 'c') ADVANCE(141); + END_STATE(); + case 107: + if (lookahead == 'd') ADVANCE(270); + END_STATE(); + case 108: + if (lookahead == 'e') ADVANCE(129); + END_STATE(); + case 109: + if (lookahead == 'e') ADVANCE(283); + if (lookahead == 'i') ADVANCE(206); + END_STATE(); + case 110: + if (lookahead == 'e') ADVANCE(384); + END_STATE(); + case 111: + if (lookahead == 'e') ADVANCE(91); + END_STATE(); + case 112: + if (lookahead == 'e') ADVANCE(404); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(173); + END_STATE(); + case 114: + if (lookahead == 'e') ADVANCE(398); + END_STATE(); + case 115: + if (lookahead == 'e') ADVANCE(256); + END_STATE(); + case 116: + if (lookahead == 'e') ADVANCE(557); + END_STATE(); + case 117: + if (lookahead == 'e') ADVANCE(400); + END_STATE(); + case 118: + if (lookahead == 'e') ADVANCE(313); + END_STATE(); + case 119: + if (lookahead == 'e') ADVANCE(382); + END_STATE(); + case 120: + if (lookahead == 'e') ADVANCE(362); + END_STATE(); + case 121: + if (lookahead == 'e') ADVANCE(130); + END_STATE(); + case 122: + if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'o') ADVANCE(164); + END_STATE(); + case 123: + if (lookahead == 'e') ADVANCE(93); + END_STATE(); + case 124: + if (lookahead == 'e') ADVANCE(172); + END_STATE(); + case 125: + if (lookahead == 'e') ADVANCE(153); + END_STATE(); + case 126: + if (lookahead == 'e') ADVANCE(154); + END_STATE(); + case 127: + if (lookahead == 'f') ADVANCE(366); + END_STATE(); + case 128: + if (lookahead == 'f') ADVANCE(252); + END_STATE(); + case 129: + if (lookahead == 'f') ADVANCE(406); + if (lookahead == 't') ADVANCE(202); + END_STATE(); + case 130: + if (lookahead == 'f') ADVANCE(98); + END_STATE(); + case 131: + if (lookahead == 'f') ADVANCE(125); + if (lookahead == 'i') ADVANCE(64); + if (lookahead == 'u') ADVANCE(63); + END_STATE(); + case 132: + if (lookahead == 'f') ADVANCE(126); + END_STATE(); + case 133: + if (lookahead == 'h') ADVANCE(138); + END_STATE(); + case 134: + if (lookahead == 'h') ADVANCE(374); + END_STATE(); + case 135: + if (lookahead == 'i') ADVANCE(160); + END_STATE(); + case 136: + if (lookahead == 'i') ADVANCE(102); + END_STATE(); + case 137: + if (lookahead == 'i') ADVANCE(103); + END_STATE(); + case 138: + if (lookahead == 'i') ADVANCE(151); + END_STATE(); + case 139: + if (lookahead == 'i') ADVANCE(106); + END_STATE(); + case 140: + if (lookahead == 'i') ADVANCE(187); + END_STATE(); + case 141: + if (lookahead == 'i') ADVANCE(190); + END_STATE(); + case 142: + if (lookahead == 'i') ADVANCE(207); + END_STATE(); + case 143: + if (lookahead == 'k') ADVANCE(360); + END_STATE(); + case 144: + if (lookahead == 'l') ADVANCE(315); + END_STATE(); + case 145: + if (lookahead == 'l') ADVANCE(250); + END_STATE(); + case 146: + if (lookahead == 'l') ADVANCE(179); + END_STATE(); + case 147: + if (lookahead == 'l') ADVANCE(179); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == 'x') ADVANCE(194); + END_STATE(); + case 148: + if (lookahead == 'l') ADVANCE(191); + END_STATE(); + case 149: + if (lookahead == 'l') ADVANCE(139); + END_STATE(); + case 150: + if (lookahead == 'l') ADVANCE(189); + END_STATE(); + case 151: + if (lookahead == 'l') ADVANCE(119); + END_STATE(); + case 152: + if (lookahead == 'l') ADVANCE(181); + END_STATE(); + case 153: + if (lookahead == 'l') ADVANCE(196); + END_STATE(); + case 154: + if (lookahead == 'l') ADVANCE(197); + END_STATE(); + case 155: + if (lookahead == 'm') ADVANCE(274); + END_STATE(); + case 156: + if (lookahead == 'm') ADVANCE(168); + END_STATE(); + case 157: + if (lookahead == 'n') ADVANCE(180); + END_STATE(); + case 158: + if (lookahead == 'n') ADVANCE(368); + END_STATE(); + case 159: + if (lookahead == 'n') ADVANCE(378); + END_STATE(); + case 160: + if (lookahead == 'n') ADVANCE(201); + END_STATE(); + case 161: + if (lookahead == 'n') ADVANCE(137); + END_STATE(); + case 162: + if (lookahead == 'o') ADVANCE(166); + END_STATE(); + case 163: + if (lookahead == 'o') ADVANCE(144); + END_STATE(); + case 164: + if (lookahead == 'o') ADVANCE(165); + END_STATE(); + case 165: + if (lookahead == 'p') ADVANCE(372); + END_STATE(); + case 166: + if (lookahead == 'p') ADVANCE(95); + END_STATE(); + case 167: + if (lookahead == 'p') ADVANCE(145); + END_STATE(); + case 168: + if (lookahead == 'p') ADVANCE(149); + END_STATE(); + case 169: + if (lookahead == 'p') ADVANCE(124); + END_STATE(); + case 170: + if (lookahead == 'p') ADVANCE(115); + END_STATE(); + case 171: + if (lookahead == 'r') ADVANCE(96); + if (lookahead == 'y') ADVANCE(170); + END_STATE(); + case 172: + if (lookahead == 'r') ADVANCE(555); + END_STATE(); + case 173: + if (lookahead == 'r') ADVANCE(158); + END_STATE(); + case 174: + if (lookahead == 'r') ADVANCE(176); + END_STATE(); + case 175: + if (lookahead == 'r') ADVANCE(159); + END_STATE(); + case 176: + if (lookahead == 'r') ADVANCE(94); + END_STATE(); + case 177: + if (lookahead == 's') ADVANCE(286); + END_STATE(); + case 178: + if (lookahead == 's') ADVANCE(280); + END_STATE(); + case 179: + if (lookahead == 's') ADVANCE(112); + END_STATE(); + case 180: + if (lookahead == 's') ADVANCE(186); + if (lookahead == 't') ADVANCE(135); + END_STATE(); + case 181: + if (lookahead == 's') ADVANCE(117); + END_STATE(); + case 182: + if (lookahead == 't') ADVANCE(99); + if (lookahead == 'u') ADVANCE(169); + END_STATE(); + case 183: + if (lookahead == 't') ADVANCE(281); + END_STATE(); + case 184: + if (lookahead == 't') ADVANCE(104); + END_STATE(); + case 185: + if (lookahead == 't') ADVANCE(553); + END_STATE(); + case 186: + if (lookahead == 't') ADVANCE(258); + END_STATE(); + case 187: + if (lookahead == 't') ADVANCE(254); + END_STATE(); + case 188: + if (lookahead == 't') ADVANCE(272); + END_STATE(); + case 189: + if (lookahead == 't') ADVANCE(364); + END_STATE(); + case 190: + if (lookahead == 't') ADVANCE(178); + END_STATE(); + case 191: + if (lookahead == 't') ADVANCE(72); + END_STATE(); + case 192: + if (lookahead == 't') ADVANCE(111); + END_STATE(); + case 193: + if (lookahead == 't') ADVANCE(136); + END_STATE(); + case 194: + if (lookahead == 't') ADVANCE(113); + END_STATE(); + case 195: + if (lookahead == 't') ADVANCE(116); + END_STATE(); + case 196: + if (lookahead == 't') ADVANCE(74); + END_STATE(); + case 197: + if (lookahead == 't') ADVANCE(75); + END_STATE(); + case 198: + if (lookahead == 'u') ADVANCE(101); + END_STATE(); + case 199: + if (lookahead == 'u') ADVANCE(155); + END_STATE(); + case 200: + if (lookahead == 'u') ADVANCE(105); + END_STATE(); + case 201: + if (lookahead == 'u') ADVANCE(120); + END_STATE(); + case 202: + if (lookahead == 'u') ADVANCE(175); + END_STATE(); + case 203: + if (lookahead == 'u') ADVANCE(150); + END_STATE(); + case 204: + if (lookahead == 'y') ADVANCE(192); + END_STATE(); + case 205: + if (lookahead == 'y') ADVANCE(317); + END_STATE(); + case 206: + if (lookahead == 'z') ADVANCE(118); + END_STATE(); + case 207: + if (lookahead == 'z') ADVANCE(110); + END_STATE(); + case 208: + if (lookahead == '0' || + lookahead == '1') ADVANCE(386); + END_STATE(); + case 209: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(387); + END_STATE(); + case 210: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + END_STATE(); + case 211: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(23); + END_STATE(); + case 212: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(394); + END_STATE(); + case 213: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(26); + END_STATE(); + case 214: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(25); + END_STATE(); + case 215: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(27); + END_STATE(); + case 216: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(28); + END_STATE(); + case 217: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(29); + END_STATE(); + case 218: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(30); + END_STATE(); + case 219: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(31); + END_STATE(); + case 220: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(32); + END_STATE(); + case 221: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(33); + END_STATE(); + case 222: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(34); + END_STATE(); + case 223: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(35); + END_STATE(); + case 224: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(36); + END_STATE(); + case 225: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(37); + END_STATE(); + case 226: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(38); + END_STATE(); + case 227: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(39); + END_STATE(); + case 228: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(40); + END_STATE(); + case 229: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(41); + END_STATE(); + case 230: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(42); + END_STATE(); + case 231: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(43); + END_STATE(); + case 232: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(44); + END_STATE(); + case 233: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(45); + END_STATE(); + case 234: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(46); + END_STATE(); + case 235: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(47); + END_STATE(); + case 236: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(48); + END_STATE(); + case 237: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(49); + END_STATE(); + case 238: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(50); + END_STATE(); + case 239: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(51); + END_STATE(); + case 240: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(52); + END_STATE(); + case 241: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(53); + END_STATE(); + case 242: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(54); + END_STATE(); + case 243: + if (eof) ADVANCE(247); + ADVANCE_MAP( + '!', 266, + '"', 390, + '#', 267, + '$', 402, + '%', 331, + '&', 336, + '\'', 24, + '(', 289, + ')', 292, + '*', 288, + '+', 326, + ',', 276, + '-', 329, + '.', 357, + '/', 330, + '0', 385, + ':', 261, + ';', 253, + '<', 403, + '=', 264, + '>', 324, + '?', 359, + '@', 356, + 'B', 204, + '[', 268, + ']', 269, + '^', 333, + '_', 290, + 'a', 177, + 'b', 19, + 'c', 18, + 'd', 121, + 'e', 147, + 'f', 92, + 'i', 61, + 'l', 122, + 'm', 97, + 'n', 162, + 'o', 128, + 'p', 198, + 'r', 108, + 's', 182, + 't', 171, + 'u', 62, + 'w', 133, + '{', 248, + '|', 338, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + END_STATE(); + case 244: + if (eof) ADVANCE(247); + ADVANCE_MAP( + '!', 266, + '"', 390, + '#', 267, + '%', 331, + '&', 335, + '\'', 24, + '(', 289, + ')', 292, + '*', 288, + '+', 326, + ',', 276, + '-', 328, + '.', 357, + '/', 330, + '0', 385, + ':', 87, + ';', 253, + '<', 322, + '=', 263, + '>', 324, + '?', 359, + '@', 356, + 'B', 548, + '[', 268, + ']', 269, + '^', 332, + 'b', 408, + 'c', 410, + 'd', 450, + 'e', 494, + 'f', 431, + 'i', 413, + 'l', 462, + 'm', 438, + 'p', 539, + 'r', 451, + 's', 524, + 't', 511, + 'u', 417, + 'w', 473, + '{', 248, + '|', 339, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(244); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 245: + if (eof) ADVANCE(247); + ADVANCE_MAP( + '!', 266, + '"', 390, + '#', 267, + '%', 331, + '&', 335, + '\'', 24, + '(', 289, + '*', 288, + '+', 326, + '-', 328, + '.', 357, + '/', 330, + '0', 385, + ':', 87, + ';', 253, + '<', 322, + '=', 263, + '>', 324, + '?', 359, + '@', 356, + 'B', 548, + '[', 268, + '^', 332, + 'b', 408, + 'c', 410, + 'd', 450, + 'e', 488, + 'f', 431, + 'i', 413, + 'l', 462, + 'm', 438, + 'p', 539, + 'r', 451, + 's', 524, + 't', 511, + 'u', 417, + 'w', 473, + '{', 248, + '|', 339, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(245); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 246: + if (eof) ADVANCE(247); + ADVANCE_MAP( + '!', 265, + '"', 390, + '#', 267, + '\'', 24, + '(', 289, + ')', 292, + '*', 287, + ',', 276, + '-', 327, + '/', 60, + '0', 385, + ':', 261, + ';', 253, + '<', 403, + '=', 262, + '>', 323, + '@', 356, + 'B', 548, + '[', 268, + ']', 269, + 'b', 408, + 'c', 410, + 'd', 450, + 'e', 494, + 'f', 431, + 'i', 413, + 'l', 462, + 'm', 438, + 'p', 539, + 'r', 451, + 's', 524, + 't', 511, + 'u', 417, + 'w', 473, + '{', 248, + '|', 337, + '}', 249, + '~', 334, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 247: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 248: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_impl); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_impl); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_of); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_trait); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_trait); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_type); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(285); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(352); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(352); + if (lookahead == '>') ADVANCE(358); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(353); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_mod); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_mod); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 272: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 273: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 274: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 275: + ACCEPT_TOKEN(anon_sym_enum); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 276: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 277: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 278: + ACCEPT_TOKEN(anon_sym_fn); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_implicits); + END_STATE(); + case 281: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_let); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 283: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 284: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(346); + END_STATE(); + case 289: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_u8); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_u8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_i8); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_i8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_u16); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_u16); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_i16); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_u32); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_u32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 304: + ACCEPT_TOKEN(anon_sym_i32); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_u64); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_u64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_i64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 309: + ACCEPT_TOKEN(anon_sym_u128); + END_STATE(); + case 310: + ACCEPT_TOKEN(anon_sym_u128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_i128); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_i128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 314: + ACCEPT_TOKEN(anon_sym_usize); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 315: + ACCEPT_TOKEN(anon_sym_bool); + END_STATE(); + case 316: + ACCEPT_TOKEN(anon_sym_bool); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_ByteArray); + END_STATE(); + case 318: + ACCEPT_TOKEN(anon_sym_ByteArray); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_felt252); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_felt252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 321: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 322: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(342); + if (lookahead == '=') ADVANCE(355); + END_STATE(); + case 323: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 324: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(354); + if (lookahead == '>') ADVANCE(343); + END_STATE(); + case 325: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 326: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(344); + END_STATE(); + case 327: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(345); + END_STATE(); + case 329: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(345); + if (lookahead == '>') ADVANCE(279); + END_STATE(); + case 330: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(558); + if (lookahead == '=') ADVANCE(347); + END_STATE(); + case 331: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(348); + END_STATE(); + case 332: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 333: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(349); + END_STATE(); + case 334: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(340); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(340); + if (lookahead == '=') ADVANCE(350); + END_STATE(); + case 337: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 338: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(351); + if (lookahead == '|') ADVANCE(341); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(341); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 341: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 342: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 343: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 353: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 354: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 356: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_break); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_continue); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 364: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_default); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_if); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 368: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 369: + ACCEPT_TOKEN(anon_sym_extern); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_nopanic); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_nopanic); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_loop); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_loop); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_match); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_pub); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_pub); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_return); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_static); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym_while); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 384: + ACCEPT_TOKEN(sym_numeric_literal); + END_STATE(); + case 385: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 'b') ADVANCE(208); + if (lookahead == 'o') ADVANCE(209); + if (lookahead == 'x') ADVANCE(210); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); + END_STATE(); + case 386: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(131); + if (lookahead == '0' || + lookahead == '1') ADVANCE(386); + END_STATE(); + case 387: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(387); + END_STATE(); + case 388: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); + END_STATE(); + case 389: + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + END_STATE(); + case 390: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + END_STATE(); + case 391: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '\n') ADVANCE(394); + if (lookahead == '"') ADVANCE(558); + if (lookahead == '\\') ADVANCE(559); + if (lookahead != 0) ADVANCE(391); + END_STATE(); + case 392: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '/') ADVANCE(393); + if (lookahead == '\\') ADVANCE(212); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(392); + if (lookahead != 0 && + lookahead != '"') ADVANCE(394); + END_STATE(); + case 393: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '/') ADVANCE(391); + if (lookahead == '\\') ADVANCE(212); + if (lookahead != 0 && + lookahead != '"') ADVANCE(394); + END_STATE(); + case 394: + ACCEPT_TOKEN(aux_sym_string_literal_token2); + if (lookahead == '\\') ADVANCE(212); + if (lookahead != 0 && + lookahead != '"') ADVANCE(394); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 396: + ACCEPT_TOKEN(sym_shortstring_literal); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym_shortstring_literal); + if (lookahead == '_') ADVANCE(132); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym_true); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 401: + ACCEPT_TOKEN(anon_sym_false); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_LT2); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_else); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 406: + ACCEPT_TOKEN(anon_sym_ref); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_ref); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(390); + if (lookahead == 'o') ADVANCE(502); + if (lookahead == 'r') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(390); + if (lookahead == 'o') ADVANCE(502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 410: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(390); + if (lookahead == 'o') ADVANCE(491); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 411: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(390); + if (lookahead == 'o') ADVANCE(498); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 412: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(390); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 413: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(419); + if (lookahead == '3') ADVANCE(420); + if (lookahead == '6') ADVANCE(425); + if (lookahead == '8') ADVANCE(296); + if (lookahead == 'f') ADVANCE(367); + if (lookahead == 'm') ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 414: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(419); + if (lookahead == '3') ADVANCE(420); + if (lookahead == '6') ADVANCE(425); + if (lookahead == '8') ADVANCE(296); + if (lookahead == 'f') ADVANCE(367); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 415: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(419); + if (lookahead == '3') ADVANCE(420); + if (lookahead == '6') ADVANCE(425); + if (lookahead == '8') ADVANCE(296); + if (lookahead == 'm') ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 416: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(419); + if (lookahead == '3') ADVANCE(420); + if (lookahead == '6') ADVANCE(425); + if (lookahead == '8') ADVANCE(296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 417: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(424); + if (lookahead == '3') ADVANCE(421); + if (lookahead == '6') ADVANCE(426); + if (lookahead == '8') ADVANCE(294); + if (lookahead == 's') ADVANCE(453); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 418: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(424); + if (lookahead == '3') ADVANCE(421); + if (lookahead == '6') ADVANCE(426); + if (lookahead == '8') ADVANCE(294); + if (lookahead == 's') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 419: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(428); + if (lookahead == '6') ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(304); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(427); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 423: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 424: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(429); + if (lookahead == '6') ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 425: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 426: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(306); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 427: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '5') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 428: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '8') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 429: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '8') ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 430: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 431: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'n') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 432: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'e') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 433: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 434: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(549); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 435: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(480); + if (lookahead == 'u') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(526); + if (lookahead == 'o') ADVANCE(449); + if (lookahead == 'u') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(526); + if (lookahead == 'o') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(526); + if (lookahead == 'u') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(526); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(538); + if (lookahead == 'r') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(377); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(381); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(371); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(271); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'i') ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(383); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(363); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(525); + if (lookahead == 'o') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'n') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(512); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(407); + if (lookahead == 't') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(441); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(375); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(446); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(487); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(361); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(530); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(459); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(523); + if (lookahead == 'n') ADVANCE(540); + if (lookahead == 'x') ADVANCE(537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(523); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 493: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 494: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(540); + if (lookahead == 'x') ADVANCE(537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 495: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 496: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 497: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(502); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(508); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(495); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(373); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 507: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 508: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(442); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 509: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 510: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 511: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(435); + if (lookahead == 'y') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 512: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(556); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(492); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(434); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(493); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(514); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(436); + if (lookahead == 'y') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(527); + if (lookahead == 't') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(527); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(457); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 523: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(461); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 524: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(515); + if (lookahead == 'u') ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 525: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(282); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 526: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 527: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 528: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 529: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 530: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(365); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 531: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(443); + if (lookahead == 'u') ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 532: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(554); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 533: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 534: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 535: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 536: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 537: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 538: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 539: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(444); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 540: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 541: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(509); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 542: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 543: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 544: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 545: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(460); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 546: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 547: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 548: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 549: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 550: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(458); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(551); + END_STATE(); + case 551: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 553: + ACCEPT_TOKEN(sym_mutable_specifier); + END_STATE(); + case 554: + ACCEPT_TOKEN(sym_mutable_specifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 555: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 556: + ACCEPT_TOKEN(sym_super); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + END_STATE(); + case 557: + ACCEPT_TOKEN(sym_crate); + END_STATE(); + case 558: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(558); + END_STATE(); + case 559: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(391); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 246}, + [2] = {.lex_state = 246}, + [3] = {.lex_state = 246}, + [4] = {.lex_state = 246}, + [5] = {.lex_state = 246}, + [6] = {.lex_state = 246}, + [7] = {.lex_state = 246}, + [8] = {.lex_state = 246}, + [9] = {.lex_state = 246}, + [10] = {.lex_state = 246}, + [11] = {.lex_state = 246}, + [12] = {.lex_state = 246}, + [13] = {.lex_state = 246}, + [14] = {.lex_state = 246}, + [15] = {.lex_state = 246}, + [16] = {.lex_state = 246}, + [17] = {.lex_state = 246}, + [18] = {.lex_state = 246}, + [19] = {.lex_state = 246}, + [20] = {.lex_state = 246}, + [21] = {.lex_state = 2}, + [22] = {.lex_state = 2}, + [23] = {.lex_state = 1}, + [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 = 244}, + [69] = {.lex_state = 244}, + [70] = {.lex_state = 244}, + [71] = {.lex_state = 244}, + [72] = {.lex_state = 244}, + [73] = {.lex_state = 244}, + [74] = {.lex_state = 244}, + [75] = {.lex_state = 244}, + [76] = {.lex_state = 244}, + [77] = {.lex_state = 244}, + [78] = {.lex_state = 244}, + [79] = {.lex_state = 244}, + [80] = {.lex_state = 244}, + [81] = {.lex_state = 244}, + [82] = {.lex_state = 244}, + [83] = {.lex_state = 245}, + [84] = {.lex_state = 245}, + [85] = {.lex_state = 245}, + [86] = {.lex_state = 245}, + [87] = {.lex_state = 5}, + [88] = {.lex_state = 244}, + [89] = {.lex_state = 5}, + [90] = {.lex_state = 244}, + [91] = {.lex_state = 5}, + [92] = {.lex_state = 5}, + [93] = {.lex_state = 5}, + [94] = {.lex_state = 5}, + [95] = {.lex_state = 244}, + [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 = 5}, + [119] = {.lex_state = 5}, + [120] = {.lex_state = 6}, + [121] = {.lex_state = 6}, + [122] = {.lex_state = 5}, + [123] = {.lex_state = 6}, + [124] = {.lex_state = 6}, + [125] = {.lex_state = 5}, + [126] = {.lex_state = 6}, + [127] = {.lex_state = 6}, + [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 = 10}, + [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 = 11}, + [228] = {.lex_state = 16}, + [229] = {.lex_state = 10}, + [230] = {.lex_state = 16}, + [231] = {.lex_state = 10}, + [232] = {.lex_state = 246}, + [233] = {.lex_state = 10}, + [234] = {.lex_state = 246}, + [235] = {.lex_state = 11}, + [236] = {.lex_state = 16}, + [237] = {.lex_state = 11}, + [238] = {.lex_state = 11}, + [239] = {.lex_state = 10}, + [240] = {.lex_state = 16}, + [241] = {.lex_state = 10}, + [242] = {.lex_state = 246}, + [243] = {.lex_state = 12}, + [244] = {.lex_state = 16}, + [245] = {.lex_state = 12}, + [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 = 246}, + [258] = {.lex_state = 246}, + [259] = {.lex_state = 246}, + [260] = {.lex_state = 246}, + [261] = {.lex_state = 246}, + [262] = {.lex_state = 246}, + [263] = {.lex_state = 246}, + [264] = {.lex_state = 246}, + [265] = {.lex_state = 246}, + [266] = {.lex_state = 246}, + [267] = {.lex_state = 246}, + [268] = {.lex_state = 246}, + [269] = {.lex_state = 246}, + [270] = {.lex_state = 246}, + [271] = {.lex_state = 246}, + [272] = {.lex_state = 246}, + [273] = {.lex_state = 246}, + [274] = {.lex_state = 246}, + [275] = {.lex_state = 246}, + [276] = {.lex_state = 246}, + [277] = {.lex_state = 246}, + [278] = {.lex_state = 246}, + [279] = {.lex_state = 246}, + [280] = {.lex_state = 246}, + [281] = {.lex_state = 246}, + [282] = {.lex_state = 246}, + [283] = {.lex_state = 246}, + [284] = {.lex_state = 246}, + [285] = {.lex_state = 246}, + [286] = {.lex_state = 246}, + [287] = {.lex_state = 246}, + [288] = {.lex_state = 246}, + [289] = {.lex_state = 246}, + [290] = {.lex_state = 246}, + [291] = {.lex_state = 246}, + [292] = {.lex_state = 246}, + [293] = {.lex_state = 246}, + [294] = {.lex_state = 246}, + [295] = {.lex_state = 246}, + [296] = {.lex_state = 246}, + [297] = {.lex_state = 246}, + [298] = {.lex_state = 246}, + [299] = {.lex_state = 246}, + [300] = {.lex_state = 246}, + [301] = {.lex_state = 246}, + [302] = {.lex_state = 246}, + [303] = {.lex_state = 246}, + [304] = {.lex_state = 246}, + [305] = {.lex_state = 246}, + [306] = {.lex_state = 246}, + [307] = {.lex_state = 246}, + [308] = {.lex_state = 246}, + [309] = {.lex_state = 246}, + [310] = {.lex_state = 246}, + [311] = {.lex_state = 246}, + [312] = {.lex_state = 246}, + [313] = {.lex_state = 246}, + [314] = {.lex_state = 246}, + [315] = {.lex_state = 246}, + [316] = {.lex_state = 246}, + [317] = {.lex_state = 246}, + [318] = {.lex_state = 246}, + [319] = {.lex_state = 246}, + [320] = {.lex_state = 246}, + [321] = {.lex_state = 246}, + [322] = {.lex_state = 246}, + [323] = {.lex_state = 246}, + [324] = {.lex_state = 246}, + [325] = {.lex_state = 246}, + [326] = {.lex_state = 246}, + [327] = {.lex_state = 246}, + [328] = {.lex_state = 246}, + [329] = {.lex_state = 246}, + [330] = {.lex_state = 246}, + [331] = {.lex_state = 246}, + [332] = {.lex_state = 246}, + [333] = {.lex_state = 246}, + [334] = {.lex_state = 246}, + [335] = {.lex_state = 246}, + [336] = {.lex_state = 15}, + [337] = {.lex_state = 16}, + [338] = {.lex_state = 16}, + [339] = {.lex_state = 15}, + [340] = {.lex_state = 15}, + [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 = 5}, + [383] = {.lex_state = 15}, + [384] = {.lex_state = 15}, + [385] = {.lex_state = 15}, + [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 = 17}, + [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 = 17}, + [401] = {.lex_state = 17}, + [402] = {.lex_state = 17}, + [403] = {.lex_state = 5}, + [404] = {.lex_state = 5}, + [405] = {.lex_state = 4}, + [406] = {.lex_state = 4}, + [407] = {.lex_state = 4}, + [408] = {.lex_state = 4}, + [409] = {.lex_state = 4}, + [410] = {.lex_state = 4}, + [411] = {.lex_state = 2}, + [412] = {.lex_state = 4}, + [413] = {.lex_state = 2}, + [414] = {.lex_state = 2}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 2}, + [417] = {.lex_state = 2}, + [418] = {.lex_state = 4}, + [419] = {.lex_state = 2}, + [420] = {.lex_state = 56}, + [421] = {.lex_state = 56}, + [422] = {.lex_state = 2}, + [423] = {.lex_state = 2}, + [424] = {.lex_state = 4}, + [425] = {.lex_state = 4}, + [426] = {.lex_state = 2}, + [427] = {.lex_state = 2}, + [428] = {.lex_state = 2}, + [429] = {.lex_state = 2}, + [430] = {.lex_state = 2}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 56}, + [433] = {.lex_state = 2}, + [434] = {.lex_state = 56}, + [435] = {.lex_state = 2}, + [436] = {.lex_state = 2}, + [437] = {.lex_state = 2}, + [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 = 10}, + [487] = {.lex_state = 10}, + [488] = {.lex_state = 10}, + [489] = {.lex_state = 10}, + [490] = {.lex_state = 3}, + [491] = {.lex_state = 10}, + [492] = {.lex_state = 10}, + [493] = {.lex_state = 10}, + [494] = {.lex_state = 10}, + [495] = {.lex_state = 2}, + [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 = 10}, + [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 = 15}, + [524] = {.lex_state = 10}, + [525] = {.lex_state = 10}, + [526] = {.lex_state = 10}, + [527] = {.lex_state = 10}, + [528] = {.lex_state = 10}, + [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 = 2}, + [544] = {.lex_state = 10}, + [545] = {.lex_state = 10}, + [546] = {.lex_state = 10}, + [547] = {.lex_state = 2}, + [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 = 21}, + [571] = {.lex_state = 3}, + [572] = {.lex_state = 2}, + [573] = {.lex_state = 3}, + [574] = {.lex_state = 2}, + [575] = {.lex_state = 55}, + [576] = {.lex_state = 3}, + [577] = {.lex_state = 2}, + [578] = {.lex_state = 2}, + [579] = {.lex_state = 2}, + [580] = {.lex_state = 2}, + [581] = {.lex_state = 21}, + [582] = {.lex_state = 21}, + [583] = {.lex_state = 21}, + [584] = {.lex_state = 21}, + [585] = {.lex_state = 21}, + [586] = {.lex_state = 21}, + [587] = {.lex_state = 2}, + [588] = {.lex_state = 3}, + [589] = {.lex_state = 55}, + [590] = {.lex_state = 55}, + [591] = {.lex_state = 55}, + [592] = {.lex_state = 2}, + [593] = {.lex_state = 15}, + [594] = {.lex_state = 55}, + [595] = {.lex_state = 3}, + [596] = {.lex_state = 55}, + [597] = {.lex_state = 55}, + [598] = {.lex_state = 2}, + [599] = {.lex_state = 55}, + [600] = {.lex_state = 55}, + [601] = {.lex_state = 55}, + [602] = {.lex_state = 2}, + [603] = {.lex_state = 55}, + [604] = {.lex_state = 2}, + [605] = {.lex_state = 55}, + [606] = {.lex_state = 55}, + [607] = {.lex_state = 55}, + [608] = {.lex_state = 15}, + [609] = {.lex_state = 55}, + [610] = {.lex_state = 55}, + [611] = {.lex_state = 2}, + [612] = {.lex_state = 55}, + [613] = {.lex_state = 3}, + [614] = {.lex_state = 55}, + [615] = {.lex_state = 2}, + [616] = {.lex_state = 55}, + [617] = {.lex_state = 3}, + [618] = {.lex_state = 55}, + [619] = {.lex_state = 2}, + [620] = {.lex_state = 2}, + [621] = {.lex_state = 55}, + [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 = 2}, + [630] = {.lex_state = 21}, + [631] = {.lex_state = 55}, + [632] = {.lex_state = 55}, + [633] = {.lex_state = 2}, + [634] = {.lex_state = 2}, + [635] = {.lex_state = 2}, + [636] = {.lex_state = 2}, + [637] = {.lex_state = 55}, + [638] = {.lex_state = 55}, + [639] = {.lex_state = 2}, + [640] = {.lex_state = 2}, + [641] = {.lex_state = 2}, + [642] = {.lex_state = 14}, + [643] = {.lex_state = 2}, + [644] = {.lex_state = 3}, + [645] = {.lex_state = 3}, + [646] = {.lex_state = 55}, + [647] = {.lex_state = 55}, + [648] = {.lex_state = 21}, + [649] = {.lex_state = 55}, + [650] = {.lex_state = 2}, + [651] = {.lex_state = 2}, + [652] = {.lex_state = 2}, + [653] = {.lex_state = 55}, + [654] = {.lex_state = 55}, + [655] = {.lex_state = 2}, + [656] = {.lex_state = 2}, + [657] = {.lex_state = 2}, + [658] = {.lex_state = 2}, + [659] = {.lex_state = 2}, + [660] = {.lex_state = 21}, + [661] = {.lex_state = 2}, + [662] = {.lex_state = 3}, + [663] = {.lex_state = 3}, + [664] = {.lex_state = 55}, + [665] = {.lex_state = 3}, + [666] = {.lex_state = 55}, + [667] = {.lex_state = 21}, + [668] = {.lex_state = 3}, + [669] = {.lex_state = 55}, + [670] = {.lex_state = 3}, + [671] = {.lex_state = 3}, + [672] = {.lex_state = 2}, + [673] = {.lex_state = 2}, + [674] = {.lex_state = 2}, + [675] = {.lex_state = 2}, + [676] = {.lex_state = 55}, + [677] = {.lex_state = 2}, + [678] = {.lex_state = 55}, + [679] = {.lex_state = 2}, + [680] = {.lex_state = 2}, + [681] = {.lex_state = 2}, + [682] = {.lex_state = 55}, + [683] = {.lex_state = 2}, + [684] = {.lex_state = 2}, + [685] = {.lex_state = 2}, + [686] = {.lex_state = 2}, + [687] = {.lex_state = 55}, + [688] = {.lex_state = 55}, + [689] = {.lex_state = 2}, + [690] = {.lex_state = 55}, + [691] = {.lex_state = 55}, + [692] = {.lex_state = 16}, + [693] = {.lex_state = 2}, + [694] = {.lex_state = 2}, + [695] = {.lex_state = 15}, + [696] = {.lex_state = 2}, + [697] = {.lex_state = 3}, + [698] = {.lex_state = 2}, + [699] = {.lex_state = 15}, + [700] = {.lex_state = 2}, + [701] = {.lex_state = 2}, + [702] = {.lex_state = 2}, + [703] = {.lex_state = 2}, + [704] = {.lex_state = 3}, + [705] = {.lex_state = 3}, + [706] = {.lex_state = 2}, + [707] = {.lex_state = 2}, + [708] = {.lex_state = 2}, + [709] = {.lex_state = 2}, + [710] = {.lex_state = 2}, + [711] = {.lex_state = 2}, + [712] = {.lex_state = 14}, + [713] = {.lex_state = 2}, + [714] = {.lex_state = 15}, + [715] = {.lex_state = 3}, + [716] = {.lex_state = 3}, + [717] = {.lex_state = 2}, + [718] = {.lex_state = 3}, + [719] = {.lex_state = 2}, + [720] = {.lex_state = 2}, + [721] = {.lex_state = 2}, + [722] = {.lex_state = 2}, + [723] = {.lex_state = 14}, + [724] = {.lex_state = 2}, + [725] = {.lex_state = 2}, + [726] = {.lex_state = 2}, + [727] = {.lex_state = 2}, + [728] = {.lex_state = 2}, + [729] = {.lex_state = 14}, + [730] = {.lex_state = 2}, + [731] = {.lex_state = 2}, + [732] = {.lex_state = 2}, + [733] = {.lex_state = 2}, + [734] = {.lex_state = 2}, + [735] = {.lex_state = 2}, + [736] = {.lex_state = 2}, + [737] = {.lex_state = 2}, + [738] = {.lex_state = 2}, + [739] = {.lex_state = 2}, + [740] = {.lex_state = 2}, + [741] = {.lex_state = 3}, + [742] = {.lex_state = 2}, + [743] = {.lex_state = 3}, + [744] = {.lex_state = 15}, + [745] = {.lex_state = 3}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 2}, + [748] = {.lex_state = 2}, + [749] = {.lex_state = 2}, + [750] = {.lex_state = 3}, + [751] = {.lex_state = 3}, + [752] = {.lex_state = 3}, + [753] = {.lex_state = 3}, + [754] = {.lex_state = 3}, + [755] = {.lex_state = 3}, + [756] = {.lex_state = 3}, + [757] = {.lex_state = 3}, + [758] = {.lex_state = 3}, + [759] = {.lex_state = 2}, + [760] = {.lex_state = 3}, + [761] = {.lex_state = 3}, + [762] = {.lex_state = 2}, + [763] = {.lex_state = 3}, + [764] = {.lex_state = 2}, + [765] = {.lex_state = 2}, + [766] = {.lex_state = 3}, + [767] = {.lex_state = 3}, + [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 = 55}, + [784] = {.lex_state = 3}, + [785] = {.lex_state = 3}, + [786] = {.lex_state = 3}, + [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 = 15}, + [807] = {.lex_state = 3}, + [808] = {.lex_state = 3}, + [809] = {.lex_state = 3}, + [810] = {.lex_state = 3}, + [811] = {.lex_state = 3}, + [812] = {.lex_state = 55}, + [813] = {.lex_state = 55}, + [814] = {.lex_state = 55}, + [815] = {.lex_state = 55}, + [816] = {.lex_state = 55}, + [817] = {.lex_state = 55}, + [818] = {.lex_state = 55}, + [819] = {.lex_state = 21}, + [820] = {.lex_state = 21}, + [821] = {.lex_state = 55}, + [822] = {.lex_state = 55}, + [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 = 8}, + [836] = {.lex_state = 8}, + [837] = {.lex_state = 8}, + [838] = {.lex_state = 8}, + [839] = {.lex_state = 246}, + [840] = {.lex_state = 246}, + [841] = {.lex_state = 246}, + [842] = {.lex_state = 246}, + [843] = {.lex_state = 246}, + [844] = {.lex_state = 246}, + [845] = {.lex_state = 246}, + [846] = {.lex_state = 246}, + [847] = {.lex_state = 246}, + [848] = {.lex_state = 8}, + [849] = {.lex_state = 57}, + [850] = {.lex_state = 0}, + [851] = {.lex_state = 57}, + [852] = {.lex_state = 57}, + [853] = {.lex_state = 8}, + [854] = {.lex_state = 246}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 57}, + [857] = {.lex_state = 8}, + [858] = {.lex_state = 9}, + [859] = {.lex_state = 8}, + [860] = {.lex_state = 8}, + [861] = {.lex_state = 9}, + [862] = {.lex_state = 9}, + [863] = {.lex_state = 8}, + [864] = {.lex_state = 8}, + [865] = {.lex_state = 9}, + [866] = {.lex_state = 8}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 8}, + [869] = {.lex_state = 8}, + [870] = {.lex_state = 246}, + [871] = {.lex_state = 8}, + [872] = {.lex_state = 246}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 8}, + [875] = {.lex_state = 8}, + [876] = {.lex_state = 22}, + [877] = {.lex_state = 246}, + [878] = {.lex_state = 8}, + [879] = {.lex_state = 246}, + [880] = {.lex_state = 8}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 8}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 8}, + [885] = {.lex_state = 8}, + [886] = {.lex_state = 8}, + [887] = {.lex_state = 22}, + [888] = {.lex_state = 22}, + [889] = {.lex_state = 22}, + [890] = {.lex_state = 22}, + [891] = {.lex_state = 22}, + [892] = {.lex_state = 9}, + [893] = {.lex_state = 22}, + [894] = {.lex_state = 246}, + [895] = {.lex_state = 20}, + [896] = {.lex_state = 22}, + [897] = {.lex_state = 8}, + [898] = {.lex_state = 22}, + [899] = {.lex_state = 57}, + [900] = {.lex_state = 22}, + [901] = {.lex_state = 20}, + [902] = {.lex_state = 57}, + [903] = {.lex_state = 246}, + [904] = {.lex_state = 57}, + [905] = {.lex_state = 57}, + [906] = {.lex_state = 57}, + [907] = {.lex_state = 246}, + [908] = {.lex_state = 57}, + [909] = {.lex_state = 57}, + [910] = {.lex_state = 22}, + [911] = {.lex_state = 57}, + [912] = {.lex_state = 57}, + [913] = {.lex_state = 57}, + [914] = {.lex_state = 57}, + [915] = {.lex_state = 57}, + [916] = {.lex_state = 57}, + [917] = {.lex_state = 22}, + [918] = {.lex_state = 246}, + [919] = {.lex_state = 246}, + [920] = {.lex_state = 57}, + [921] = {.lex_state = 57}, + [922] = {.lex_state = 246}, + [923] = {.lex_state = 20}, + [924] = {.lex_state = 57}, + [925] = {.lex_state = 22}, + [926] = {.lex_state = 22}, + [927] = {.lex_state = 22}, + [928] = {.lex_state = 22}, + [929] = {.lex_state = 57}, + [930] = {.lex_state = 57}, + [931] = {.lex_state = 57}, + [932] = {.lex_state = 57}, + [933] = {.lex_state = 57}, + [934] = {.lex_state = 57}, + [935] = {.lex_state = 57}, + [936] = {.lex_state = 57}, + [937] = {.lex_state = 57}, + [938] = {.lex_state = 20}, + [939] = {.lex_state = 57}, + [940] = {.lex_state = 57}, + [941] = {.lex_state = 22}, + [942] = {.lex_state = 22}, + [943] = {.lex_state = 57}, + [944] = {.lex_state = 20}, + [945] = {.lex_state = 57}, + [946] = {.lex_state = 22}, + [947] = {.lex_state = 22}, + [948] = {.lex_state = 246}, + [949] = {.lex_state = 57}, + [950] = {.lex_state = 57}, + [951] = {.lex_state = 57}, + [952] = {.lex_state = 57}, + [953] = {.lex_state = 20}, + [954] = {.lex_state = 246}, + [955] = {.lex_state = 22}, + [956] = {.lex_state = 246}, + [957] = {.lex_state = 20}, + [958] = {.lex_state = 246}, + [959] = {.lex_state = 246}, + [960] = {.lex_state = 246}, + [961] = {.lex_state = 246}, + [962] = {.lex_state = 246}, + [963] = {.lex_state = 22}, + [964] = {.lex_state = 22}, + [965] = {.lex_state = 9}, + [966] = {.lex_state = 58}, + [967] = {.lex_state = 22}, + [968] = {.lex_state = 58}, + [969] = {.lex_state = 58}, + [970] = {.lex_state = 9}, + [971] = {.lex_state = 9}, + [972] = {.lex_state = 246}, + [973] = {.lex_state = 8}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 246}, + [976] = {.lex_state = 246}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 246}, + [979] = {.lex_state = 9}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 9}, + [982] = {.lex_state = 0}, + [983] = {.lex_state = 246}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 246}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 9}, + [990] = {.lex_state = 8}, + [991] = {.lex_state = 4}, + [992] = {.lex_state = 5}, + [993] = {.lex_state = 246}, + [994] = {.lex_state = 22}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 246}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 8}, + [1000] = {.lex_state = 8}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 5}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 57}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 8}, + [1007] = {.lex_state = 246}, + [1008] = {.lex_state = 59}, + [1009] = {.lex_state = 20}, + [1010] = {.lex_state = 59}, + [1011] = {.lex_state = 5}, + [1012] = {.lex_state = 5}, + [1013] = {.lex_state = 246}, + [1014] = {.lex_state = 5}, + [1015] = {.lex_state = 58}, + [1016] = {.lex_state = 8}, + [1017] = {.lex_state = 8}, + [1018] = {.lex_state = 246}, + [1019] = {.lex_state = 8}, + [1020] = {.lex_state = 246}, + [1021] = {.lex_state = 8}, + [1022] = {.lex_state = 8}, + [1023] = {.lex_state = 8}, + [1024] = {.lex_state = 8}, + [1025] = {.lex_state = 5}, + [1026] = {.lex_state = 8}, + [1027] = {.lex_state = 59}, + [1028] = {.lex_state = 8}, + [1029] = {.lex_state = 5}, + [1030] = {.lex_state = 20}, + [1031] = {.lex_state = 59}, + [1032] = {.lex_state = 246}, + [1033] = {.lex_state = 246}, + [1034] = {.lex_state = 8}, + [1035] = {.lex_state = 4}, + [1036] = {.lex_state = 8}, + [1037] = {.lex_state = 246}, + [1038] = {.lex_state = 57}, + [1039] = {.lex_state = 8}, + [1040] = {.lex_state = 5}, + [1041] = {.lex_state = 246}, + [1042] = {.lex_state = 58}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 246}, + [1046] = {.lex_state = 246}, + [1047] = {.lex_state = 246}, + [1048] = {.lex_state = 57}, + [1049] = {.lex_state = 57}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 246}, + [1052] = {.lex_state = 57}, + [1053] = {.lex_state = 58}, + [1054] = {.lex_state = 59}, + [1055] = {.lex_state = 57}, + [1056] = {.lex_state = 246}, + [1057] = {.lex_state = 5}, + [1058] = {.lex_state = 5}, + [1059] = {.lex_state = 59}, + [1060] = {.lex_state = 58}, + [1061] = {.lex_state = 246}, + [1062] = {.lex_state = 58}, + [1063] = {.lex_state = 58}, + [1064] = {.lex_state = 57}, + [1065] = {.lex_state = 58}, + [1066] = {.lex_state = 58}, + [1067] = {.lex_state = 58}, + [1068] = {.lex_state = 58}, + [1069] = {.lex_state = 58}, + [1070] = {.lex_state = 246}, + [1071] = {.lex_state = 246}, + [1072] = {.lex_state = 246}, + [1073] = {.lex_state = 59}, + [1074] = {.lex_state = 246}, + [1075] = {.lex_state = 57}, + [1076] = {.lex_state = 58}, + [1077] = {.lex_state = 59}, + [1078] = {.lex_state = 58}, + [1079] = {.lex_state = 59}, + [1080] = {.lex_state = 57}, + [1081] = {.lex_state = 246}, + [1082] = {.lex_state = 58}, + [1083] = {.lex_state = 58}, + [1084] = {.lex_state = 59}, + [1085] = {.lex_state = 57}, + [1086] = {.lex_state = 58}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 5}, + [1089] = {.lex_state = 246}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 58}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 58}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 58}, + [1098] = {.lex_state = 58}, + [1099] = {.lex_state = 57}, + [1100] = {.lex_state = 9}, + [1101] = {.lex_state = 5}, + [1102] = {.lex_state = 58}, + [1103] = {.lex_state = 58}, + [1104] = {.lex_state = 246}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 5}, + [1107] = {.lex_state = 246}, + [1108] = {.lex_state = 58}, + [1109] = {.lex_state = 5}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 0}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 58}, + [1114] = {.lex_state = 58}, + [1115] = {.lex_state = 58}, + [1116] = {.lex_state = 58}, + [1117] = {.lex_state = 58}, + [1118] = {.lex_state = 58}, + [1119] = {.lex_state = 5}, + [1120] = {.lex_state = 246}, + [1121] = {.lex_state = 58}, + [1122] = {.lex_state = 58}, + [1123] = {.lex_state = 58}, + [1124] = {.lex_state = 246}, + [1125] = {.lex_state = 59}, + [1126] = {.lex_state = 58}, + [1127] = {.lex_state = 57}, + [1128] = {.lex_state = 58}, + [1129] = {.lex_state = 58}, + [1130] = {.lex_state = 246}, + [1131] = {.lex_state = 58}, + [1132] = {.lex_state = 58}, + [1133] = {.lex_state = 59}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 58}, + [1136] = {.lex_state = 57}, + [1137] = {.lex_state = 0}, + [1138] = {.lex_state = 0}, + [1139] = {.lex_state = 246}, + [1140] = {.lex_state = 57}, + [1141] = {.lex_state = 9}, + [1142] = {.lex_state = 5}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 20}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 246}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 246}, + [1151] = {.lex_state = 246}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 246}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 246}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 246}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 9}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 9}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 9}, + [1168] = {.lex_state = 9}, + [1169] = {.lex_state = 9}, + [1170] = {.lex_state = 9}, + [1171] = {.lex_state = 9}, + [1172] = {.lex_state = 246}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 246}, + [1175] = {.lex_state = 9}, + [1176] = {.lex_state = 9}, + [1177] = {.lex_state = 0}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 14}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 246}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 9}, + [1185] = {.lex_state = 9}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 9}, + [1189] = {.lex_state = 22}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 14}, + [1193] = {.lex_state = 9}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 9}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [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 = 246}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 9}, + [1211] = {.lex_state = 9}, + [1212] = {.lex_state = 246}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 9}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 9}, + [1220] = {.lex_state = 246}, + [1221] = {.lex_state = 9}, + [1222] = {.lex_state = 9}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 9}, + [1226] = {.lex_state = 246}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 246}, + [1229] = {.lex_state = 14}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 9}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 14}, + [1237] = {.lex_state = 59}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 9}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 9}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 9}, + [1244] = {.lex_state = 9}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 9}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 9}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 9}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 246}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 246}, + [1257] = {.lex_state = 246}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 246}, + [1260] = {.lex_state = 246}, + [1261] = {.lex_state = 246}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 9}, + [1264] = {.lex_state = 246}, + [1265] = {.lex_state = 9}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 9}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 9}, + [1270] = {.lex_state = 9}, + [1271] = {.lex_state = 246}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 9}, + [1274] = {.lex_state = 246}, + [1275] = {.lex_state = 5}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, + [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 = 246}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 246}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 5}, + [1293] = {.lex_state = 14}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 246}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 5}, + [1305] = {.lex_state = 0}, + [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 = 246}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 5}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 14}, + [1320] = {.lex_state = 9}, + [1321] = {.lex_state = 9}, + [1322] = {.lex_state = 0}, + [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 = 5}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 0}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 58}, + [1335] = {.lex_state = 246}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 246}, + [1338] = {.lex_state = 8}, + [1339] = {.lex_state = 246}, + [1340] = {.lex_state = 0}, + [1341] = {.lex_state = 8}, + [1342] = {.lex_state = 246}, + [1343] = {.lex_state = 246}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 57}, + [1349] = {.lex_state = 58}, + [1350] = {.lex_state = 246}, + [1351] = {.lex_state = 58}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 246}, + [1360] = {.lex_state = 20}, + [1361] = {.lex_state = 246}, + [1362] = {.lex_state = 246}, + [1363] = {.lex_state = 246}, + [1364] = {.lex_state = 246}, + [1365] = {.lex_state = 57}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 246}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 8}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 246}, + [1379] = {.lex_state = 246}, + [1380] = {.lex_state = 58}, + [1381] = {.lex_state = 246}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 246}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 58}, + [1388] = {.lex_state = 58}, + [1389] = {.lex_state = 58}, + [1390] = {.lex_state = 58}, + [1391] = {.lex_state = 58}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 246}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 246}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 246}, + [1402] = {.lex_state = 246}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 246}, + [1405] = {.lex_state = 20}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 58}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 58}, + [1410] = {.lex_state = 58}, + [1411] = {.lex_state = 58}, + [1412] = {.lex_state = 58}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [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 = 58}, + [1422] = {.lex_state = 58}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 58}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 58}, + [1428] = {.lex_state = 58}, + [1429] = {.lex_state = 58}, + [1430] = {.lex_state = 57}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 246}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 58}, + [1440] = {.lex_state = 58}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 246}, + [1444] = {.lex_state = 58}, + [1445] = {.lex_state = 58}, + [1446] = {.lex_state = 58}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 20}, + [1449] = {.lex_state = 58}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 246}, + [1454] = {.lex_state = 58}, + [1455] = {.lex_state = 58}, + [1456] = {.lex_state = 58}, + [1457] = {.lex_state = 246}, + [1458] = {.lex_state = 58}, + [1459] = {.lex_state = 58}, + [1460] = {.lex_state = 246}, + [1461] = {.lex_state = 246}, + [1462] = {.lex_state = 246}, + [1463] = {.lex_state = 246}, + [1464] = {.lex_state = 58}, + [1465] = {.lex_state = 246}, + [1466] = {.lex_state = 8}, + [1467] = {.lex_state = 58}, + [1468] = {.lex_state = 20}, + [1469] = {.lex_state = 20}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 10}, + [1472] = {.lex_state = 0}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 14}, + [1480] = {.lex_state = 20}, + [1481] = {.lex_state = 20}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 20}, + [1484] = {.lex_state = 20}, + [1485] = {.lex_state = 20}, + [1486] = {.lex_state = 20}, + [1487] = {.lex_state = 10}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 20}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 20}, + [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 = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 10}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 20}, + [1507] = {.lex_state = 20}, + [1508] = {.lex_state = 20}, + [1509] = {.lex_state = 20}, + [1510] = {.lex_state = 20}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 20}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 392}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 20}, + [1524] = {.lex_state = 20}, + [1525] = {.lex_state = 10}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 10}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 20}, + [1536] = {.lex_state = 20}, + [1537] = {.lex_state = 20}, + [1538] = {.lex_state = 20}, + [1539] = {.lex_state = 20}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 20}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 20}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 20}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 20}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 14}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 14}, + [1568] = {.lex_state = 246}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 14}, + [1575] = {.lex_state = 14}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 14}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 20}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 0}, + [1583] = {.lex_state = 0}, + [1584] = {.lex_state = 392}, + [1585] = {.lex_state = 392}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 20}, + [1588] = {.lex_state = 20}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 14}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 20}, + [1596] = {.lex_state = 20}, + [1597] = {.lex_state = 392}, + [1598] = {.lex_state = 20}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 392}, + [1603] = {.lex_state = 20}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 14}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 20}, + [1608] = {.lex_state = 20}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 20}, + [1611] = {.lex_state = 14}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 20}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 20}, + [1617] = {.lex_state = 0}, + [1618] = {.lex_state = 14}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 246}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 0}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 0}, + [1626] = {.lex_state = 20}, + [1627] = {.lex_state = 20}, + [1628] = {.lex_state = 20}, + [1629] = {.lex_state = 20}, + [1630] = {.lex_state = 20}, +}; + +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] = 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(1582), + [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(290), + [sym_external_function_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(2), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(13), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(77), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [3] = { + [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(290), + [sym_external_function_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(6), + [sym_expression] = STATE(656), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(6), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(79), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [4] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [5] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(624), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [6] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(652), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(17), + [sym_function_item] = STATE(17), + [sym_function_signature_item] = STATE(17), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(17), + [sym_use_declaration] = STATE(17), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(17), + [sym_expression] = STATE(635), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(17), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(684), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(4), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(5), + [sym_expression] = STATE(626), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(5), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(14), + [sym_expression] = STATE(598), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(14), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [11] = { + [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(290), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(651), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(20), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [12] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(640), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(13), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(13), + [ts_builtin_sym_end] = ACTIONS(99), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_impl] = ACTIONS(104), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_trait] = ACTIONS(110), + [anon_sym_type] = ACTIONS(113), + [anon_sym_const] = ACTIONS(116), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_mod] = ACTIONS(128), + [anon_sym_struct] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(134), + [anon_sym_fn] = ACTIONS(137), + [anon_sym_let] = ACTIONS(140), + [anon_sym_use] = ACTIONS(143), + [anon_sym_COLON_COLON] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_ByteArray] = ACTIONS(152), + [anon_sym_felt252] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_AT] = ACTIONS(119), + [anon_sym_break] = ACTIONS(158), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_default] = ACTIONS(164), + [anon_sym_if] = ACTIONS(167), + [anon_sym_extern] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_pub] = ACTIONS(179), + [anon_sym_return] = ACTIONS(182), + [anon_sym_while] = ACTIONS(185), + [sym_numeric_literal] = ACTIONS(188), + [aux_sym_string_literal_token1] = ACTIONS(191), + [sym_shortstring_literal] = ACTIONS(188), + [anon_sym_true] = ACTIONS(194), + [anon_sym_false] = ACTIONS(194), + [anon_sym_ref] = ACTIONS(197), + [sym_identifier] = ACTIONS(200), + [sym_super] = ACTIONS(203), + [sym_line_comment] = ACTIONS(3), + }, + [14] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(643), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(206), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(18), + [sym_function_item] = STATE(18), + [sym_function_signature_item] = STATE(18), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(18), + [sym_use_declaration] = STATE(18), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(18), + [sym_expression] = STATE(675), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(18), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(208), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [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(290), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(641), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(12), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(210), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [17] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(634), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(212), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [18] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(214), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [19] = { + [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(95), + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_impl] = ACTIONS(104), + [anon_sym_SEMI] = ACTIONS(107), + [anon_sym_trait] = ACTIONS(110), + [anon_sym_type] = ACTIONS(113), + [anon_sym_const] = ACTIONS(116), + [anon_sym_BANG] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_mod] = ACTIONS(128), + [anon_sym_struct] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(134), + [anon_sym_fn] = ACTIONS(137), + [anon_sym_let] = ACTIONS(140), + [anon_sym_use] = ACTIONS(143), + [anon_sym_COLON_COLON] = ACTIONS(146), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym_u8] = ACTIONS(152), + [anon_sym_i8] = ACTIONS(152), + [anon_sym_u16] = ACTIONS(152), + [anon_sym_i16] = ACTIONS(152), + [anon_sym_u32] = ACTIONS(152), + [anon_sym_i32] = ACTIONS(152), + [anon_sym_u64] = ACTIONS(152), + [anon_sym_i64] = ACTIONS(152), + [anon_sym_u128] = ACTIONS(152), + [anon_sym_i128] = ACTIONS(152), + [anon_sym_usize] = ACTIONS(152), + [anon_sym_bool] = ACTIONS(152), + [anon_sym_ByteArray] = ACTIONS(152), + [anon_sym_felt252] = ACTIONS(152), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(119), + [anon_sym_AT] = ACTIONS(119), + [anon_sym_break] = ACTIONS(158), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_default] = ACTIONS(164), + [anon_sym_if] = ACTIONS(167), + [anon_sym_extern] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_pub] = ACTIONS(179), + [anon_sym_return] = ACTIONS(182), + [anon_sym_while] = ACTIONS(185), + [sym_numeric_literal] = ACTIONS(188), + [aux_sym_string_literal_token1] = ACTIONS(191), + [sym_shortstring_literal] = ACTIONS(188), + [anon_sym_true] = ACTIONS(194), + [anon_sym_false] = ACTIONS(194), + [anon_sym_ref] = ACTIONS(197), + [sym_identifier] = ACTIONS(200), + [sym_super] = ACTIONS(203), + [sym_line_comment] = ACTIONS(3), + }, + [20] = { + [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(290), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1258), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(650), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [sym_visibility_modifier] = STATE(855), + [sym_extern] = STATE(1240), + [aux_sym_source_file_repeat1] = STATE(19), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(216), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [21] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(482), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_SEMI] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_BANG] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_RBRACK] = ACTIONS(218), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(220), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [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(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_SLASH] = ACTIONS(220), + [anon_sym_PERCENT] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(218), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(220), + [anon_sym_PIPE] = ACTIONS(220), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(218), + [anon_sym_DASH_EQ] = ACTIONS(218), + [anon_sym_STAR_EQ] = ACTIONS(218), + [anon_sym_SLASH_EQ] = ACTIONS(218), + [anon_sym_PERCENT_EQ] = ACTIONS(218), + [anon_sym_EQ_EQ] = ACTIONS(218), + [anon_sym_BANG_EQ] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(218), + [anon_sym_LT_EQ] = ACTIONS(218), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(218), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [22] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(456), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(226), + [anon_sym_SEMI] = ACTIONS(226), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_BANG] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(226), + [anon_sym_COMMA] = ACTIONS(226), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(226), + [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(228), + [anon_sym_GT] = ACTIONS(228), + [anon_sym_PLUS] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(230), + [anon_sym_SLASH] = ACTIONS(228), + [anon_sym_PERCENT] = ACTIONS(228), + [anon_sym_CARET] = ACTIONS(226), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_AMP_AMP] = ACTIONS(226), + [anon_sym_PIPE_PIPE] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(226), + [anon_sym_PLUS_EQ] = ACTIONS(226), + [anon_sym_DASH_EQ] = ACTIONS(226), + [anon_sym_STAR_EQ] = ACTIONS(226), + [anon_sym_SLASH_EQ] = ACTIONS(226), + [anon_sym_PERCENT_EQ] = ACTIONS(226), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(226), + [anon_sym_QMARK] = ACTIONS(226), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [23] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(232), + [anon_sym_RBRACE] = ACTIONS(235), + [anon_sym_impl] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(240), + [anon_sym_trait] = ACTIONS(237), + [anon_sym_type] = ACTIONS(237), + [anon_sym_const] = ACTIONS(237), + [anon_sym_COLON] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(240), + [anon_sym_LBRACK] = ACTIONS(246), + [anon_sym_RBRACK] = ACTIONS(235), + [anon_sym_mod] = ACTIONS(237), + [anon_sym_struct] = ACTIONS(237), + [anon_sym_enum] = ACTIONS(237), + [anon_sym_COMMA] = ACTIONS(240), + [anon_sym_fn] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(240), + [anon_sym_let] = ACTIONS(237), + [anon_sym_use] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(240), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym__] = ACTIONS(243), + [anon_sym_RPAREN] = ACTIONS(235), + [anon_sym_u8] = ACTIONS(252), + [anon_sym_i8] = ACTIONS(252), + [anon_sym_u16] = ACTIONS(252), + [anon_sym_i16] = ACTIONS(252), + [anon_sym_u32] = ACTIONS(252), + [anon_sym_i32] = ACTIONS(252), + [anon_sym_u64] = ACTIONS(252), + [anon_sym_i64] = ACTIONS(252), + [anon_sym_u128] = ACTIONS(252), + [anon_sym_i128] = ACTIONS(252), + [anon_sym_usize] = ACTIONS(252), + [anon_sym_bool] = ACTIONS(252), + [anon_sym_ByteArray] = ACTIONS(252), + [anon_sym_felt252] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_PERCENT] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_TILDE] = ACTIONS(240), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(240), + [anon_sym_PIPE_PIPE] = ACTIONS(240), + [anon_sym_LT_LT] = ACTIONS(240), + [anon_sym_GT_GT] = ACTIONS(240), + [anon_sym_PLUS_EQ] = ACTIONS(240), + [anon_sym_DASH_EQ] = ACTIONS(240), + [anon_sym_STAR_EQ] = ACTIONS(240), + [anon_sym_SLASH_EQ] = ACTIONS(240), + [anon_sym_PERCENT_EQ] = ACTIONS(240), + [anon_sym_CARET_EQ] = ACTIONS(240), + [anon_sym_AMP_EQ] = ACTIONS(240), + [anon_sym_PIPE_EQ] = ACTIONS(240), + [anon_sym_EQ_EQ] = ACTIONS(240), + [anon_sym_BANG_EQ] = ACTIONS(240), + [anon_sym_GT_EQ] = ACTIONS(240), + [anon_sym_LT_EQ] = ACTIONS(240), + [anon_sym_AT] = ACTIONS(240), + [anon_sym_DOT] = ACTIONS(240), + [anon_sym_EQ_GT] = ACTIONS(240), + [anon_sym_QMARK] = ACTIONS(240), + [anon_sym_break] = ACTIONS(237), + [anon_sym_continue] = ACTIONS(237), + [anon_sym_default] = ACTIONS(237), + [anon_sym_if] = ACTIONS(237), + [anon_sym_extern] = ACTIONS(237), + [anon_sym_nopanic] = ACTIONS(237), + [anon_sym_loop] = ACTIONS(237), + [anon_sym_match] = ACTIONS(237), + [anon_sym_pub] = ACTIONS(237), + [anon_sym_return] = ACTIONS(237), + [anon_sym_static] = ACTIONS(237), + [anon_sym_while] = ACTIONS(237), + [sym_numeric_literal] = ACTIONS(258), + [aux_sym_string_literal_token1] = ACTIONS(261), + [sym_shortstring_literal] = ACTIONS(258), + [anon_sym_true] = ACTIONS(264), + [anon_sym_false] = ACTIONS(264), + [anon_sym_DOLLAR] = ACTIONS(267), + [sym_identifier] = ACTIONS(237), + [sym_mutable_specifier] = ACTIONS(237), + [sym_super] = ACTIONS(237), + [sym_line_comment] = ACTIONS(3), + }, + [24] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [25] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(296), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [26] = { + [sym_delim_token_tree] = STATE(50), + [sym__delim_tokens] = STATE(50), + [sym__literal] = STATE(50), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(298), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(298), + [anon_sym_type] = ACTIONS(298), + [anon_sym_const] = ACTIONS(298), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(300), + [anon_sym_mod] = ACTIONS(298), + [anon_sym_struct] = ACTIONS(298), + [anon_sym_enum] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(298), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(298), + [anon_sym_use] = ACTIONS(298), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(298), + [anon_sym_continue] = ACTIONS(298), + [anon_sym_default] = ACTIONS(298), + [anon_sym_if] = ACTIONS(298), + [anon_sym_extern] = ACTIONS(298), + [anon_sym_nopanic] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(298), + [anon_sym_match] = ACTIONS(298), + [anon_sym_pub] = ACTIONS(298), + [anon_sym_return] = ACTIONS(298), + [anon_sym_static] = ACTIONS(298), + [anon_sym_while] = ACTIONS(298), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(302), + [sym_identifier] = ACTIONS(298), + [sym_mutable_specifier] = ACTIONS(298), + [sym_super] = ACTIONS(298), + [sym_line_comment] = ACTIONS(3), + }, + [27] = { + [sym_delim_token_tree] = STATE(25), + [sym__delim_tokens] = STATE(25), + [sym__literal] = STATE(25), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(304), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(304), + [anon_sym_type] = ACTIONS(304), + [anon_sym_const] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(304), + [anon_sym_struct] = ACTIONS(304), + [anon_sym_enum] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(304), + [anon_sym_use] = ACTIONS(304), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(306), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(304), + [anon_sym_continue] = ACTIONS(304), + [anon_sym_default] = ACTIONS(304), + [anon_sym_if] = ACTIONS(304), + [anon_sym_extern] = ACTIONS(304), + [anon_sym_nopanic] = ACTIONS(304), + [anon_sym_loop] = ACTIONS(304), + [anon_sym_match] = ACTIONS(304), + [anon_sym_pub] = ACTIONS(304), + [anon_sym_return] = ACTIONS(304), + [anon_sym_static] = ACTIONS(304), + [anon_sym_while] = ACTIONS(304), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(308), + [sym_identifier] = ACTIONS(304), + [sym_mutable_specifier] = ACTIONS(304), + [sym_super] = ACTIONS(304), + [sym_line_comment] = ACTIONS(3), + }, + [28] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [29] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [30] = { + [sym_delim_token_tree] = STATE(51), + [sym__delim_tokens] = STATE(51), + [sym__literal] = STATE(51), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(310), + [anon_sym_type] = ACTIONS(310), + [anon_sym_const] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(310), + [anon_sym_enum] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(310), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(310), + [anon_sym_use] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(312), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_default] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_extern] = ACTIONS(310), + [anon_sym_nopanic] = ACTIONS(310), + [anon_sym_loop] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_pub] = ACTIONS(310), + [anon_sym_return] = ACTIONS(310), + [anon_sym_static] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(314), + [sym_identifier] = ACTIONS(310), + [sym_mutable_specifier] = ACTIONS(310), + [sym_super] = ACTIONS(310), + [sym_line_comment] = ACTIONS(3), + }, + [31] = { + [sym_delim_token_tree] = STATE(28), + [sym__delim_tokens] = STATE(28), + [sym__literal] = STATE(28), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(316), + [anon_sym_type] = ACTIONS(316), + [anon_sym_const] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(316), + [anon_sym_use] = ACTIONS(316), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(318), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_if] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_nopanic] = ACTIONS(316), + [anon_sym_loop] = ACTIONS(316), + [anon_sym_match] = ACTIONS(316), + [anon_sym_pub] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_identifier] = ACTIONS(316), + [sym_mutable_specifier] = ACTIONS(316), + [sym_super] = ACTIONS(316), + [sym_line_comment] = ACTIONS(3), + }, + [32] = { + [sym_delim_token_tree] = STATE(52), + [sym__delim_tokens] = STATE(52), + [sym__literal] = STATE(52), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_RBRACE] = ACTIONS(300), + [anon_sym_impl] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(322), + [anon_sym_type] = ACTIONS(322), + [anon_sym_const] = ACTIONS(322), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(322), + [anon_sym_struct] = ACTIONS(322), + [anon_sym_enum] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(322), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(322), + [anon_sym_use] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(322), + [anon_sym_continue] = ACTIONS(322), + [anon_sym_default] = ACTIONS(322), + [anon_sym_if] = ACTIONS(322), + [anon_sym_extern] = ACTIONS(322), + [anon_sym_nopanic] = ACTIONS(322), + [anon_sym_loop] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), + [anon_sym_pub] = ACTIONS(322), + [anon_sym_return] = ACTIONS(322), + [anon_sym_static] = ACTIONS(322), + [anon_sym_while] = ACTIONS(322), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(324), + [sym_identifier] = ACTIONS(322), + [sym_mutable_specifier] = ACTIONS(322), + [sym_super] = ACTIONS(322), + [sym_line_comment] = ACTIONS(3), + }, + [33] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(326), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [34] = { + [sym_delim_token_tree] = STATE(29), + [sym__delim_tokens] = STATE(29), + [sym__literal] = STATE(29), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(328), + [anon_sym_type] = ACTIONS(328), + [anon_sym_const] = ACTIONS(328), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(318), + [anon_sym_mod] = ACTIONS(328), + [anon_sym_struct] = ACTIONS(328), + [anon_sym_enum] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(328), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(328), + [anon_sym_use] = ACTIONS(328), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(330), + [sym_identifier] = ACTIONS(328), + [sym_mutable_specifier] = ACTIONS(328), + [sym_super] = ACTIONS(328), + [sym_line_comment] = ACTIONS(3), + }, + [35] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(326), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [36] = { + [sym_delim_token_tree] = STATE(24), + [sym__delim_tokens] = STATE(24), + [sym__literal] = STATE(24), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_impl] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(332), + [anon_sym_type] = ACTIONS(332), + [anon_sym_const] = ACTIONS(332), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(332), + [anon_sym_struct] = ACTIONS(332), + [anon_sym_enum] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(332), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(332), + [anon_sym_use] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(332), + [anon_sym_default] = ACTIONS(332), + [anon_sym_if] = ACTIONS(332), + [anon_sym_extern] = ACTIONS(332), + [anon_sym_nopanic] = ACTIONS(332), + [anon_sym_loop] = ACTIONS(332), + [anon_sym_match] = ACTIONS(332), + [anon_sym_pub] = ACTIONS(332), + [anon_sym_return] = ACTIONS(332), + [anon_sym_static] = ACTIONS(332), + [anon_sym_while] = ACTIONS(332), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(334), + [sym_identifier] = ACTIONS(332), + [sym_mutable_specifier] = ACTIONS(332), + [sym_super] = ACTIONS(332), + [sym_line_comment] = ACTIONS(3), + }, + [37] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [38] = { + [sym_delim_token_tree] = STATE(33), + [sym__delim_tokens] = STATE(33), + [sym__literal] = STATE(33), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(336), + [anon_sym_type] = ACTIONS(336), + [anon_sym_const] = ACTIONS(336), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(336), + [anon_sym_struct] = ACTIONS(336), + [anon_sym_enum] = ACTIONS(336), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(336), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(336), + [anon_sym_use] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_default] = ACTIONS(336), + [anon_sym_if] = ACTIONS(336), + [anon_sym_extern] = ACTIONS(336), + [anon_sym_nopanic] = ACTIONS(336), + [anon_sym_loop] = ACTIONS(336), + [anon_sym_match] = ACTIONS(336), + [anon_sym_pub] = ACTIONS(336), + [anon_sym_return] = ACTIONS(336), + [anon_sym_static] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_identifier] = ACTIONS(336), + [sym_mutable_specifier] = ACTIONS(336), + [sym_super] = ACTIONS(336), + [sym_line_comment] = ACTIONS(3), + }, + [39] = { + [sym_delim_token_tree] = STATE(49), + [sym__delim_tokens] = STATE(49), + [sym__literal] = STATE(49), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(342), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(342), + [anon_sym_type] = ACTIONS(342), + [anon_sym_const] = ACTIONS(342), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(342), + [anon_sym_struct] = ACTIONS(342), + [anon_sym_enum] = ACTIONS(342), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(342), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(342), + [anon_sym_use] = ACTIONS(342), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(300), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(344), + [sym_identifier] = ACTIONS(342), + [sym_mutable_specifier] = ACTIONS(342), + [sym_super] = ACTIONS(342), + [sym_line_comment] = ACTIONS(3), + }, + [40] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(296), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [41] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(346), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [42] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(296), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [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(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(348), + [anon_sym_type] = ACTIONS(348), + [anon_sym_const] = ACTIONS(348), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(338), + [anon_sym_mod] = ACTIONS(348), + [anon_sym_struct] = ACTIONS(348), + [anon_sym_enum] = ACTIONS(348), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(348), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(348), + [anon_sym_use] = ACTIONS(348), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(350), + [sym_identifier] = ACTIONS(348), + [sym_mutable_specifier] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_line_comment] = ACTIONS(3), + }, + [44] = { + [sym_delim_token_tree] = STATE(41), + [sym__delim_tokens] = STATE(41), + [sym__literal] = STATE(41), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(41), + [aux_sym_delim_token_tree_repeat1] = STATE(41), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_impl] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(352), + [anon_sym_type] = ACTIONS(352), + [anon_sym_const] = ACTIONS(352), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(352), + [anon_sym_struct] = ACTIONS(352), + [anon_sym_enum] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(352), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(352), + [anon_sym_use] = ACTIONS(352), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(354), + [sym_identifier] = ACTIONS(352), + [sym_mutable_specifier] = ACTIONS(352), + [sym_super] = ACTIONS(352), + [sym_line_comment] = ACTIONS(3), + }, + [45] = { + [sym_delim_token_tree] = STATE(37), + [sym__delim_tokens] = STATE(37), + [sym__literal] = STATE(37), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_impl] = ACTIONS(356), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(356), + [anon_sym_type] = ACTIONS(356), + [anon_sym_const] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(356), + [anon_sym_struct] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(356), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(356), + [anon_sym_use] = ACTIONS(356), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(358), + [sym_identifier] = ACTIONS(356), + [sym_mutable_specifier] = ACTIONS(356), + [sym_super] = ACTIONS(356), + [sym_line_comment] = ACTIONS(3), + }, + [46] = { + [sym_delim_token_tree] = STATE(53), + [sym__delim_tokens] = STATE(53), + [sym__literal] = STATE(53), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [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(270), + [anon_sym_impl] = ACTIONS(360), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(360), + [anon_sym_type] = ACTIONS(360), + [anon_sym_const] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(312), + [anon_sym_mod] = ACTIONS(360), + [anon_sym_struct] = ACTIONS(360), + [anon_sym_enum] = ACTIONS(360), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(360), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(360), + [anon_sym_use] = ACTIONS(360), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(362), + [sym_identifier] = ACTIONS(360), + [sym_mutable_specifier] = ACTIONS(360), + [sym_super] = ACTIONS(360), + [sym_line_comment] = ACTIONS(3), + }, + [47] = { + [sym_delim_token_tree] = STATE(42), + [sym__delim_tokens] = STATE(42), + [sym__literal] = STATE(42), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(42), + [aux_sym_delim_token_tree_repeat1] = STATE(42), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_impl] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(364), + [anon_sym_type] = ACTIONS(364), + [anon_sym_const] = ACTIONS(364), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(364), + [anon_sym_struct] = ACTIONS(364), + [anon_sym_enum] = ACTIONS(364), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(364), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(364), + [anon_sym_use] = ACTIONS(364), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_identifier] = ACTIONS(364), + [sym_mutable_specifier] = ACTIONS(364), + [sym_super] = ACTIONS(364), + [sym_line_comment] = ACTIONS(3), + }, + [48] = { + [sym_delim_token_tree] = STATE(40), + [sym__delim_tokens] = STATE(40), + [sym__literal] = STATE(40), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(40), + [aux_sym_delim_token_tree_repeat1] = STATE(40), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(368), + [anon_sym_type] = ACTIONS(368), + [anon_sym_const] = ACTIONS(368), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(306), + [anon_sym_mod] = ACTIONS(368), + [anon_sym_struct] = ACTIONS(368), + [anon_sym_enum] = ACTIONS(368), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(368), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(368), + [anon_sym_use] = ACTIONS(368), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [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(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(370), + [sym_identifier] = ACTIONS(368), + [sym_mutable_specifier] = ACTIONS(368), + [sym_super] = ACTIONS(368), + [sym_line_comment] = ACTIONS(3), + }, + [49] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(372), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [50] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(372), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [51] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_RPAREN] = ACTIONS(346), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [52] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(372), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [53] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(60), + [sym_string_literal] = STATE(60), + [sym_boolean_literal] = STATE(60), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(270), + [anon_sym_impl] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_trait] = ACTIONS(274), + [anon_sym_type] = ACTIONS(274), + [anon_sym_const] = ACTIONS(274), + [anon_sym_COLON] = ACTIONS(278), + [anon_sym_EQ] = ACTIONS(278), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_POUND] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_RBRACK] = ACTIONS(346), + [anon_sym_mod] = ACTIONS(274), + [anon_sym_struct] = ACTIONS(274), + [anon_sym_enum] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_fn] = ACTIONS(274), + [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_let] = ACTIONS(274), + [anon_sym_use] = ACTIONS(274), + [anon_sym_COLON_COLON] = ACTIONS(276), + [anon_sym_STAR] = ACTIONS(278), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym__] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(284), + [anon_sym_i8] = ACTIONS(284), + [anon_sym_u16] = ACTIONS(284), + [anon_sym_i16] = ACTIONS(284), + [anon_sym_u32] = ACTIONS(284), + [anon_sym_i32] = ACTIONS(284), + [anon_sym_u64] = ACTIONS(284), + [anon_sym_i64] = ACTIONS(284), + [anon_sym_u128] = ACTIONS(284), + [anon_sym_i128] = ACTIONS(284), + [anon_sym_usize] = ACTIONS(284), + [anon_sym_bool] = ACTIONS(284), + [anon_sym_ByteArray] = ACTIONS(284), + [anon_sym_felt252] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(278), + [anon_sym_GT] = ACTIONS(278), + [anon_sym_PLUS] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(278), + [anon_sym_CARET] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_AMP] = ACTIONS(278), + [anon_sym_PIPE] = ACTIONS(278), + [anon_sym_AMP_AMP] = ACTIONS(276), + [anon_sym_PIPE_PIPE] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(276), + [anon_sym_PLUS_EQ] = ACTIONS(276), + [anon_sym_DASH_EQ] = ACTIONS(276), + [anon_sym_STAR_EQ] = ACTIONS(276), + [anon_sym_SLASH_EQ] = ACTIONS(276), + [anon_sym_PERCENT_EQ] = ACTIONS(276), + [anon_sym_CARET_EQ] = ACTIONS(276), + [anon_sym_AMP_EQ] = ACTIONS(276), + [anon_sym_PIPE_EQ] = ACTIONS(276), + [anon_sym_EQ_EQ] = ACTIONS(276), + [anon_sym_BANG_EQ] = ACTIONS(276), + [anon_sym_GT_EQ] = ACTIONS(276), + [anon_sym_LT_EQ] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_DOT] = ACTIONS(276), + [anon_sym_EQ_GT] = ACTIONS(276), + [anon_sym_QMARK] = ACTIONS(276), + [anon_sym_break] = ACTIONS(274), + [anon_sym_continue] = ACTIONS(274), + [anon_sym_default] = ACTIONS(274), + [anon_sym_if] = ACTIONS(274), + [anon_sym_extern] = ACTIONS(274), + [anon_sym_nopanic] = ACTIONS(274), + [anon_sym_loop] = ACTIONS(274), + [anon_sym_match] = ACTIONS(274), + [anon_sym_pub] = ACTIONS(274), + [anon_sym_return] = ACTIONS(274), + [anon_sym_static] = ACTIONS(274), + [anon_sym_while] = ACTIONS(274), + [sym_numeric_literal] = ACTIONS(288), + [aux_sym_string_literal_token1] = ACTIONS(290), + [sym_shortstring_literal] = ACTIONS(288), + [anon_sym_true] = ACTIONS(292), + [anon_sym_false] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(294), + [sym_identifier] = ACTIONS(274), + [sym_mutable_specifier] = ACTIONS(274), + [sym_super] = ACTIONS(274), + [sym_line_comment] = ACTIONS(3), + }, + [54] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(755), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_BANG] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(220), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_SLASH] = ACTIONS(220), + [anon_sym_PERCENT] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(218), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(220), + [anon_sym_PIPE] = ACTIONS(220), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(218), + [anon_sym_DASH_EQ] = ACTIONS(218), + [anon_sym_STAR_EQ] = ACTIONS(218), + [anon_sym_SLASH_EQ] = ACTIONS(218), + [anon_sym_PERCENT_EQ] = ACTIONS(218), + [anon_sym_EQ_EQ] = ACTIONS(218), + [anon_sym_BANG_EQ] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(218), + [anon_sym_LT_EQ] = ACTIONS(218), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_EQ_GT] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(218), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [55] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_BANG] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(228), + [anon_sym_GT] = ACTIONS(228), + [anon_sym_PLUS] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(416), + [anon_sym_SLASH] = ACTIONS(228), + [anon_sym_PERCENT] = ACTIONS(228), + [anon_sym_CARET] = ACTIONS(226), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_AMP_AMP] = ACTIONS(226), + [anon_sym_PIPE_PIPE] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(226), + [anon_sym_PLUS_EQ] = ACTIONS(226), + [anon_sym_DASH_EQ] = ACTIONS(226), + [anon_sym_STAR_EQ] = ACTIONS(226), + [anon_sym_SLASH_EQ] = ACTIONS(226), + [anon_sym_PERCENT_EQ] = ACTIONS(226), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_DOT] = ACTIONS(226), + [anon_sym_EQ_GT] = ACTIONS(226), + [anon_sym_QMARK] = ACTIONS(226), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [56] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(717), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(220), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_GT] = ACTIONS(220), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_SLASH] = ACTIONS(220), + [anon_sym_PERCENT] = ACTIONS(220), + [anon_sym_CARET] = ACTIONS(218), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(220), + [anon_sym_PIPE] = ACTIONS(220), + [anon_sym_AMP_AMP] = ACTIONS(218), + [anon_sym_PIPE_PIPE] = ACTIONS(218), + [anon_sym_LT_LT] = ACTIONS(218), + [anon_sym_GT_GT] = ACTIONS(218), + [anon_sym_PLUS_EQ] = ACTIONS(218), + [anon_sym_DASH_EQ] = ACTIONS(218), + [anon_sym_STAR_EQ] = ACTIONS(218), + [anon_sym_SLASH_EQ] = ACTIONS(218), + [anon_sym_PERCENT_EQ] = ACTIONS(218), + [anon_sym_EQ_EQ] = ACTIONS(218), + [anon_sym_BANG_EQ] = ACTIONS(218), + [anon_sym_GT_EQ] = ACTIONS(218), + [anon_sym_LT_EQ] = ACTIONS(218), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(218), + [anon_sym_QMARK] = ACTIONS(218), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [57] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(719), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(228), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(228), + [anon_sym_GT] = ACTIONS(228), + [anon_sym_PLUS] = ACTIONS(228), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(228), + [anon_sym_PERCENT] = ACTIONS(228), + [anon_sym_CARET] = ACTIONS(226), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_AMP_AMP] = ACTIONS(226), + [anon_sym_PIPE_PIPE] = ACTIONS(226), + [anon_sym_LT_LT] = ACTIONS(226), + [anon_sym_GT_GT] = ACTIONS(226), + [anon_sym_PLUS_EQ] = ACTIONS(226), + [anon_sym_DASH_EQ] = ACTIONS(226), + [anon_sym_STAR_EQ] = ACTIONS(226), + [anon_sym_SLASH_EQ] = ACTIONS(226), + [anon_sym_PERCENT_EQ] = ACTIONS(226), + [anon_sym_EQ_EQ] = ACTIONS(226), + [anon_sym_BANG_EQ] = ACTIONS(226), + [anon_sym_GT_EQ] = ACTIONS(226), + [anon_sym_LT_EQ] = ACTIONS(226), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(226), + [anon_sym_QMARK] = ACTIONS(226), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [58] = { + [aux_sym__non_special_token_repeat1] = STATE(58), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_impl] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_trait] = ACTIONS(442), + [anon_sym_type] = ACTIONS(442), + [anon_sym_const] = ACTIONS(442), + [anon_sym_COLON] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(440), + [anon_sym_RBRACK] = ACTIONS(440), + [anon_sym_mod] = ACTIONS(442), + [anon_sym_struct] = ACTIONS(442), + [anon_sym_enum] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(444), + [anon_sym_fn] = ACTIONS(442), + [anon_sym_DASH_GT] = ACTIONS(444), + [anon_sym_let] = ACTIONS(442), + [anon_sym_use] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym__] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_u8] = ACTIONS(442), + [anon_sym_i8] = ACTIONS(442), + [anon_sym_u16] = ACTIONS(442), + [anon_sym_i16] = ACTIONS(442), + [anon_sym_u32] = ACTIONS(442), + [anon_sym_i32] = ACTIONS(442), + [anon_sym_u64] = ACTIONS(442), + [anon_sym_i64] = ACTIONS(442), + [anon_sym_u128] = ACTIONS(442), + [anon_sym_i128] = ACTIONS(442), + [anon_sym_usize] = ACTIONS(442), + [anon_sym_bool] = ACTIONS(442), + [anon_sym_ByteArray] = ACTIONS(442), + [anon_sym_felt252] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [anon_sym_DASH_EQ] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(444), + [anon_sym_SLASH_EQ] = ACTIONS(444), + [anon_sym_PERCENT_EQ] = ACTIONS(444), + [anon_sym_CARET_EQ] = ACTIONS(444), + [anon_sym_AMP_EQ] = ACTIONS(444), + [anon_sym_PIPE_EQ] = ACTIONS(444), + [anon_sym_EQ_EQ] = ACTIONS(444), + [anon_sym_BANG_EQ] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(444), + [anon_sym_EQ_GT] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_break] = ACTIONS(442), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_if] = ACTIONS(442), + [anon_sym_extern] = ACTIONS(442), + [anon_sym_nopanic] = ACTIONS(442), + [anon_sym_loop] = ACTIONS(442), + [anon_sym_match] = ACTIONS(442), + [anon_sym_pub] = ACTIONS(442), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [sym_numeric_literal] = ACTIONS(440), + [aux_sym_string_literal_token1] = ACTIONS(440), + [sym_shortstring_literal] = ACTIONS(440), + [anon_sym_true] = ACTIONS(442), + [anon_sym_false] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(440), + [sym_identifier] = ACTIONS(442), + [sym_mutable_specifier] = ACTIONS(442), + [sym_super] = ACTIONS(442), + [sym_line_comment] = ACTIONS(3), + }, + [59] = { + [aux_sym__non_special_token_repeat1] = STATE(58), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_impl] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_trait] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_const] = ACTIONS(452), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_RBRACK] = ACTIONS(450), + [anon_sym_mod] = ACTIONS(452), + [anon_sym_struct] = ACTIONS(452), + [anon_sym_enum] = ACTIONS(452), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_fn] = ACTIONS(452), + [anon_sym_DASH_GT] = ACTIONS(454), + [anon_sym_let] = ACTIONS(452), + [anon_sym_use] = ACTIONS(452), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(450), + [anon_sym__] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(450), + [anon_sym_u8] = ACTIONS(452), + [anon_sym_i8] = ACTIONS(452), + [anon_sym_u16] = ACTIONS(452), + [anon_sym_i16] = ACTIONS(452), + [anon_sym_u32] = ACTIONS(452), + [anon_sym_i32] = ACTIONS(452), + [anon_sym_u64] = ACTIONS(452), + [anon_sym_i64] = ACTIONS(452), + [anon_sym_u128] = ACTIONS(452), + [anon_sym_i128] = ACTIONS(452), + [anon_sym_usize] = ACTIONS(452), + [anon_sym_bool] = ACTIONS(452), + [anon_sym_ByteArray] = ACTIONS(452), + [anon_sym_felt252] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_PLUS] = ACTIONS(456), + [anon_sym_DASH] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(456), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(456), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(454), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_PLUS_EQ] = ACTIONS(454), + [anon_sym_DASH_EQ] = ACTIONS(454), + [anon_sym_STAR_EQ] = ACTIONS(454), + [anon_sym_SLASH_EQ] = ACTIONS(454), + [anon_sym_PERCENT_EQ] = ACTIONS(454), + [anon_sym_CARET_EQ] = ACTIONS(454), + [anon_sym_AMP_EQ] = ACTIONS(454), + [anon_sym_PIPE_EQ] = ACTIONS(454), + [anon_sym_EQ_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_EQ_GT] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_break] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_if] = ACTIONS(452), + [anon_sym_extern] = ACTIONS(452), + [anon_sym_nopanic] = ACTIONS(452), + [anon_sym_loop] = ACTIONS(452), + [anon_sym_match] = ACTIONS(452), + [anon_sym_pub] = ACTIONS(452), + [anon_sym_return] = ACTIONS(452), + [anon_sym_static] = ACTIONS(452), + [anon_sym_while] = ACTIONS(452), + [sym_numeric_literal] = ACTIONS(450), + [aux_sym_string_literal_token1] = ACTIONS(450), + [sym_shortstring_literal] = ACTIONS(450), + [anon_sym_true] = ACTIONS(452), + [anon_sym_false] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [sym_identifier] = ACTIONS(452), + [sym_mutable_specifier] = ACTIONS(452), + [sym_super] = ACTIONS(452), + [sym_line_comment] = ACTIONS(3), + }, + [60] = { + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_impl] = ACTIONS(460), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_trait] = ACTIONS(460), + [anon_sym_type] = ACTIONS(460), + [anon_sym_const] = ACTIONS(460), + [anon_sym_COLON] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_RBRACK] = ACTIONS(458), + [anon_sym_mod] = ACTIONS(460), + [anon_sym_struct] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_fn] = ACTIONS(460), + [anon_sym_DASH_GT] = ACTIONS(458), + [anon_sym_let] = ACTIONS(460), + [anon_sym_use] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(458), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym__] = ACTIONS(460), + [anon_sym_RPAREN] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(460), + [anon_sym_i8] = ACTIONS(460), + [anon_sym_u16] = ACTIONS(460), + [anon_sym_i16] = ACTIONS(460), + [anon_sym_u32] = ACTIONS(460), + [anon_sym_i32] = ACTIONS(460), + [anon_sym_u64] = ACTIONS(460), + [anon_sym_i64] = ACTIONS(460), + [anon_sym_u128] = ACTIONS(460), + [anon_sym_i128] = ACTIONS(460), + [anon_sym_usize] = ACTIONS(460), + [anon_sym_bool] = ACTIONS(460), + [anon_sym_ByteArray] = ACTIONS(460), + [anon_sym_felt252] = ACTIONS(460), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(458), + [anon_sym_GT_GT] = ACTIONS(458), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(458), + [anon_sym_EQ_GT] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_break] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_if] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(460), + [anon_sym_nopanic] = ACTIONS(460), + [anon_sym_loop] = ACTIONS(460), + [anon_sym_match] = ACTIONS(460), + [anon_sym_pub] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [sym_numeric_literal] = ACTIONS(458), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_shortstring_literal] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [anon_sym_DOLLAR] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [sym_mutable_specifier] = ACTIONS(460), + [sym_super] = ACTIONS(460), + [sym_line_comment] = ACTIONS(3), + }, + [61] = { + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_impl] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_trait] = ACTIONS(464), + [anon_sym_type] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_COLON] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [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(462), + [anon_sym_fn] = ACTIONS(464), + [anon_sym_DASH_GT] = ACTIONS(462), + [anon_sym_let] = ACTIONS(464), + [anon_sym_use] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym__] = ACTIONS(464), + [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(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(462), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_AT] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_EQ_GT] = ACTIONS(462), + [anon_sym_QMARK] = ACTIONS(462), + [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(462), + [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), + }, + [62] = { + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_impl] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_trait] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_COLON] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(466), + [anon_sym_mod] = ACTIONS(468), + [anon_sym_struct] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_fn] = ACTIONS(468), + [anon_sym_DASH_GT] = ACTIONS(466), + [anon_sym_let] = ACTIONS(468), + [anon_sym_use] = ACTIONS(468), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym__] = ACTIONS(468), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_ByteArray] = ACTIONS(468), + [anon_sym_felt252] = ACTIONS(468), + [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] = ACTIONS(466), + [anon_sym_EQ_GT] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_nopanic] = ACTIONS(468), + [anon_sym_loop] = ACTIONS(468), + [anon_sym_match] = ACTIONS(468), + [anon_sym_pub] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym_numeric_literal] = ACTIONS(466), + [aux_sym_string_literal_token1] = ACTIONS(466), + [sym_shortstring_literal] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [sym_mutable_specifier] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_line_comment] = ACTIONS(3), + }, + [63] = { + [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] = ACTIONS(470), + [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(470), + [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), + }, + [64] = { + [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] = ACTIONS(474), + [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(474), + [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), + }, + [65] = { + [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] = ACTIONS(478), + [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(482), + [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), + }, + [66] = { + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_impl] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_trait] = ACTIONS(487), + [anon_sym_type] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_POUND] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_mod] = ACTIONS(487), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_DASH_GT] = ACTIONS(485), + [anon_sym_let] = ACTIONS(487), + [anon_sym_use] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym__] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_ByteArray] = ACTIONS(487), + [anon_sym_felt252] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_PERCENT] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(485), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_nopanic] = ACTIONS(487), + [anon_sym_loop] = ACTIONS(487), + [anon_sym_match] = ACTIONS(487), + [anon_sym_pub] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [sym_numeric_literal] = ACTIONS(485), + [aux_sym_string_literal_token1] = ACTIONS(485), + [sym_shortstring_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_DOLLAR] = ACTIONS(485), + [sym_identifier] = ACTIONS(487), + [sym_mutable_specifier] = ACTIONS(487), + [sym_super] = ACTIONS(487), + [sym_line_comment] = ACTIONS(3), + }, + [67] = { + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_impl] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_trait] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_const] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_mod] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(491), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_fn] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(489), + [anon_sym_let] = ACTIONS(491), + [anon_sym_use] = ACTIONS(491), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_u8] = ACTIONS(491), + [anon_sym_i8] = ACTIONS(491), + [anon_sym_u16] = ACTIONS(491), + [anon_sym_i16] = ACTIONS(491), + [anon_sym_u32] = ACTIONS(491), + [anon_sym_i32] = ACTIONS(491), + [anon_sym_u64] = ACTIONS(491), + [anon_sym_i64] = ACTIONS(491), + [anon_sym_u128] = ACTIONS(491), + [anon_sym_i128] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_ByteArray] = ACTIONS(491), + [anon_sym_felt252] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(491), + [anon_sym_PERCENT] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_CARET_EQ] = ACTIONS(489), + [anon_sym_AMP_EQ] = ACTIONS(489), + [anon_sym_PIPE_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_EQ_GT] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_extern] = ACTIONS(491), + [anon_sym_nopanic] = ACTIONS(491), + [anon_sym_loop] = ACTIONS(491), + [anon_sym_match] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [sym_numeric_literal] = ACTIONS(489), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_shortstring_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [sym_identifier] = ACTIONS(491), + [sym_mutable_specifier] = ACTIONS(491), + [sym_super] = ACTIONS(491), + [sym_line_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_impl] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_trait] = ACTIONS(495), + [anon_sym_type] = ACTIONS(495), + [anon_sym_const] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(493), + [anon_sym_RBRACK] = ACTIONS(493), + [anon_sym_mod] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(495), + [anon_sym_enum] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(495), + [anon_sym_let] = ACTIONS(495), + [anon_sym_use] = ACTIONS(495), + [anon_sym_COLON_COLON] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_RPAREN] = ACTIONS(493), + [anon_sym_u8] = ACTIONS(495), + [anon_sym_i8] = ACTIONS(495), + [anon_sym_u16] = ACTIONS(495), + [anon_sym_i16] = ACTIONS(495), + [anon_sym_u32] = ACTIONS(495), + [anon_sym_i32] = ACTIONS(495), + [anon_sym_u64] = ACTIONS(495), + [anon_sym_i64] = ACTIONS(495), + [anon_sym_u128] = ACTIONS(495), + [anon_sym_i128] = ACTIONS(495), + [anon_sym_usize] = ACTIONS(495), + [anon_sym_bool] = ACTIONS(495), + [anon_sym_ByteArray] = ACTIONS(495), + [anon_sym_felt252] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_PERCENT] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_STAR_EQ] = ACTIONS(493), + [anon_sym_SLASH_EQ] = ACTIONS(493), + [anon_sym_PERCENT_EQ] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(493), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(493), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_default] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(495), + [anon_sym_loop] = ACTIONS(495), + [anon_sym_match] = ACTIONS(495), + [anon_sym_pub] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [sym_numeric_literal] = ACTIONS(493), + [aux_sym_string_literal_token1] = ACTIONS(493), + [sym_shortstring_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_ref] = ACTIONS(495), + [sym_identifier] = ACTIONS(495), + [sym_super] = ACTIONS(495), + [sym_line_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_impl] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_trait] = ACTIONS(499), + [anon_sym_type] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_mod] = ACTIONS(499), + [anon_sym_struct] = ACTIONS(499), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_fn] = ACTIONS(499), + [anon_sym_let] = ACTIONS(499), + [anon_sym_use] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_u8] = ACTIONS(499), + [anon_sym_i8] = ACTIONS(499), + [anon_sym_u16] = ACTIONS(499), + [anon_sym_i16] = ACTIONS(499), + [anon_sym_u32] = ACTIONS(499), + [anon_sym_i32] = ACTIONS(499), + [anon_sym_u64] = ACTIONS(499), + [anon_sym_i64] = ACTIONS(499), + [anon_sym_u128] = ACTIONS(499), + [anon_sym_i128] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_ByteArray] = ACTIONS(499), + [anon_sym_felt252] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT_GT] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_if] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(499), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_match] = ACTIONS(499), + [anon_sym_pub] = ACTIONS(499), + [anon_sym_return] = ACTIONS(499), + [anon_sym_while] = ACTIONS(499), + [sym_numeric_literal] = ACTIONS(497), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_shortstring_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), + [anon_sym_ref] = ACTIONS(499), + [sym_identifier] = ACTIONS(499), + [sym_super] = ACTIONS(499), + [sym_line_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_impl] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_trait] = ACTIONS(503), + [anon_sym_type] = ACTIONS(503), + [anon_sym_const] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_POUND] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_mod] = ACTIONS(503), + [anon_sym_struct] = ACTIONS(503), + [anon_sym_enum] = ACTIONS(503), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_let] = ACTIONS(503), + [anon_sym_use] = ACTIONS(503), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_u8] = ACTIONS(503), + [anon_sym_i8] = ACTIONS(503), + [anon_sym_u16] = ACTIONS(503), + [anon_sym_i16] = ACTIONS(503), + [anon_sym_u32] = ACTIONS(503), + [anon_sym_i32] = ACTIONS(503), + [anon_sym_u64] = ACTIONS(503), + [anon_sym_i64] = ACTIONS(503), + [anon_sym_u128] = ACTIONS(503), + [anon_sym_i128] = ACTIONS(503), + [anon_sym_usize] = ACTIONS(503), + [anon_sym_bool] = ACTIONS(503), + [anon_sym_ByteArray] = ACTIONS(503), + [anon_sym_felt252] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(503), + [anon_sym_CARET] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT] = ACTIONS(501), + [anon_sym_GT_GT] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_EQ_EQ] = ACTIONS(501), + [anon_sym_BANG_EQ] = ACTIONS(501), + [anon_sym_GT_EQ] = ACTIONS(501), + [anon_sym_LT_EQ] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_break] = ACTIONS(503), + [anon_sym_continue] = ACTIONS(503), + [anon_sym_default] = ACTIONS(503), + [anon_sym_if] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(503), + [anon_sym_match] = ACTIONS(503), + [anon_sym_pub] = ACTIONS(503), + [anon_sym_return] = ACTIONS(503), + [anon_sym_while] = ACTIONS(503), + [sym_numeric_literal] = ACTIONS(501), + [aux_sym_string_literal_token1] = ACTIONS(501), + [sym_shortstring_literal] = ACTIONS(501), + [anon_sym_true] = ACTIONS(503), + [anon_sym_false] = ACTIONS(503), + [anon_sym_ref] = ACTIONS(503), + [sym_identifier] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_line_comment] = ACTIONS(3), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(474), + [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_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_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_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(474), + [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_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] = 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_loop] = ACTIONS(476), + [anon_sym_match] = ACTIONS(476), + [anon_sym_pub] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [sym_numeric_literal] = ACTIONS(474), + [aux_sym_string_literal_token1] = ACTIONS(474), + [sym_shortstring_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_ref] = ACTIONS(476), + [sym_identifier] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_impl] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_trait] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(466), + [anon_sym_mod] = ACTIONS(468), + [anon_sym_struct] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_fn] = ACTIONS(468), + [anon_sym_let] = ACTIONS(468), + [anon_sym_use] = ACTIONS(468), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_ByteArray] = ACTIONS(468), + [anon_sym_felt252] = ACTIONS(468), + [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(466), + [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_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] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_loop] = ACTIONS(468), + [anon_sym_match] = ACTIONS(468), + [anon_sym_pub] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym_numeric_literal] = ACTIONS(466), + [aux_sym_string_literal_token1] = ACTIONS(466), + [sym_shortstring_literal] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [anon_sym_ref] = ACTIONS(468), + [sym_identifier] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_line_comment] = ACTIONS(3), + }, + [73] = { + [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(505), + [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), + }, + [74] = { + [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(509), + [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), + }, + [75] = { + [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(513), + [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), + }, + [76] = { + [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(517), + [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), + }, + [77] = { + [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(521), + [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), + }, + [78] = { + [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(525), + [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), + }, + [79] = { + [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(529), + [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), + }, + [80] = { + [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(533), + [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), + }, + [81] = { + [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(537), + [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), + }, + [82] = { + [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(541), + [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), + }, + [83] = { + [sym_else_clause] = STATE(79), + [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_mod] = ACTIONS(547), + [anon_sym_struct] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(547), + [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_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(545), + [aux_sym_string_literal_token1] = ACTIONS(545), + [sym_shortstring_literal] = ACTIONS(545), + [anon_sym_true] = ACTIONS(547), + [anon_sym_false] = ACTIONS(547), + [anon_sym_else] = ACTIONS(549), + [anon_sym_ref] = ACTIONS(547), + [sym_identifier] = ACTIONS(547), + [sym_super] = ACTIONS(547), + [sym_line_comment] = ACTIONS(3), + }, + [84] = { + [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_mod] = ACTIONS(523), + [anon_sym_struct] = ACTIONS(523), + [anon_sym_enum] = ACTIONS(523), + [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_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(521), + [aux_sym_string_literal_token1] = ACTIONS(521), + [sym_shortstring_literal] = ACTIONS(521), + [anon_sym_true] = ACTIONS(523), + [anon_sym_false] = ACTIONS(523), + [anon_sym_else] = ACTIONS(523), + [anon_sym_ref] = ACTIONS(523), + [sym_identifier] = ACTIONS(523), + [sym_super] = ACTIONS(523), + [sym_line_comment] = ACTIONS(3), + }, + [85] = { + [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_mod] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(507), + [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_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(505), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_shortstring_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_else] = ACTIONS(507), + [anon_sym_ref] = ACTIONS(507), + [sym_identifier] = ACTIONS(507), + [sym_super] = ACTIONS(507), + [sym_line_comment] = ACTIONS(3), + }, + [86] = { + [ts_builtin_sym_end] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_impl] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_trait] = ACTIONS(499), + [anon_sym_type] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_mod] = ACTIONS(499), + [anon_sym_struct] = ACTIONS(499), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_fn] = ACTIONS(499), + [anon_sym_let] = ACTIONS(499), + [anon_sym_use] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_u8] = ACTIONS(499), + [anon_sym_i8] = ACTIONS(499), + [anon_sym_u16] = ACTIONS(499), + [anon_sym_i16] = ACTIONS(499), + [anon_sym_u32] = ACTIONS(499), + [anon_sym_i32] = ACTIONS(499), + [anon_sym_u64] = ACTIONS(499), + [anon_sym_i64] = ACTIONS(499), + [anon_sym_u128] = ACTIONS(499), + [anon_sym_i128] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_ByteArray] = ACTIONS(499), + [anon_sym_felt252] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT_GT] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_if] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(499), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_match] = ACTIONS(499), + [anon_sym_pub] = ACTIONS(499), + [anon_sym_return] = ACTIONS(499), + [anon_sym_while] = ACTIONS(499), + [sym_numeric_literal] = ACTIONS(497), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_shortstring_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), + [anon_sym_else] = ACTIONS(499), + [anon_sym_ref] = ACTIONS(499), + [sym_identifier] = ACTIONS(499), + [sym_super] = ACTIONS(499), + [sym_line_comment] = ACTIONS(3), + }, + [87] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(105), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(577), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1285), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(105), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(557), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [88] = { + [ts_builtin_sym_end] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_ByteArray] = ACTIONS(565), + [anon_sym_felt252] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_break] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_extern] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_numeric_literal] = ACTIONS(561), + [aux_sym_string_literal_token1] = ACTIONS(561), + [sym_shortstring_literal] = ACTIONS(561), + [anon_sym_true] = ACTIONS(565), + [anon_sym_false] = ACTIONS(565), + [anon_sym_ref] = ACTIONS(565), + [sym_identifier] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_line_comment] = ACTIONS(3), + }, + [89] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(102), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(580), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1310), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(102), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COMMA] = ACTIONS(569), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(571), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [90] = { + [ts_builtin_sym_end] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_impl] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_trait] = ACTIONS(575), + [anon_sym_type] = ACTIONS(575), + [anon_sym_const] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_mod] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_enum] = ACTIONS(575), + [anon_sym_fn] = ACTIONS(575), + [anon_sym_let] = ACTIONS(575), + [anon_sym_use] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_u8] = ACTIONS(575), + [anon_sym_i8] = ACTIONS(575), + [anon_sym_u16] = ACTIONS(575), + [anon_sym_i16] = ACTIONS(575), + [anon_sym_u32] = ACTIONS(575), + [anon_sym_i32] = ACTIONS(575), + [anon_sym_u64] = ACTIONS(575), + [anon_sym_i64] = ACTIONS(575), + [anon_sym_u128] = ACTIONS(575), + [anon_sym_i128] = ACTIONS(575), + [anon_sym_usize] = ACTIONS(575), + [anon_sym_bool] = ACTIONS(575), + [anon_sym_ByteArray] = ACTIONS(575), + [anon_sym_felt252] = ACTIONS(575), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_break] = ACTIONS(575), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_default] = ACTIONS(575), + [anon_sym_if] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(575), + [anon_sym_loop] = ACTIONS(575), + [anon_sym_match] = ACTIONS(575), + [anon_sym_pub] = ACTIONS(575), + [anon_sym_return] = ACTIONS(575), + [anon_sym_while] = ACTIONS(575), + [sym_numeric_literal] = ACTIONS(573), + [aux_sym_string_literal_token1] = ACTIONS(573), + [sym_shortstring_literal] = ACTIONS(573), + [anon_sym_true] = ACTIONS(575), + [anon_sym_false] = ACTIONS(575), + [anon_sym_ref] = ACTIONS(575), + [sym_identifier] = ACTIONS(575), + [sym_super] = ACTIONS(575), + [sym_line_comment] = ACTIONS(3), + }, + [91] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(577), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [92] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(579), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [93] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(581), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [94] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(583), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [95] = { + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_ByteArray] = ACTIONS(565), + [anon_sym_felt252] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_break] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_extern] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_numeric_literal] = ACTIONS(561), + [aux_sym_string_literal_token1] = ACTIONS(561), + [sym_shortstring_literal] = ACTIONS(561), + [anon_sym_true] = ACTIONS(565), + [anon_sym_false] = ACTIONS(565), + [anon_sym_ref] = ACTIONS(565), + [sym_identifier] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_line_comment] = ACTIONS(3), + }, + [96] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(585), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [97] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [98] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(103), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(495), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(103), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(591), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [99] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(658), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1437), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [100] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(578), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_RBRACK] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_COLON_COLON] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(613), + [anon_sym_i8] = ACTIONS(613), + [anon_sym_u16] = ACTIONS(613), + [anon_sym_i16] = ACTIONS(613), + [anon_sym_u32] = ACTIONS(613), + [anon_sym_i32] = ACTIONS(613), + [anon_sym_u64] = ACTIONS(613), + [anon_sym_i64] = ACTIONS(613), + [anon_sym_u128] = ACTIONS(613), + [anon_sym_i128] = ACTIONS(613), + [anon_sym_usize] = ACTIONS(613), + [anon_sym_bool] = ACTIONS(613), + [anon_sym_ByteArray] = ACTIONS(613), + [anon_sym_felt252] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(625), + [anon_sym_if] = ACTIONS(628), + [anon_sym_loop] = ACTIONS(631), + [anon_sym_match] = ACTIONS(634), + [anon_sym_return] = ACTIONS(637), + [anon_sym_while] = ACTIONS(640), + [sym_numeric_literal] = ACTIONS(643), + [aux_sym_string_literal_token1] = ACTIONS(646), + [sym_shortstring_literal] = ACTIONS(643), + [anon_sym_true] = ACTIONS(649), + [anon_sym_false] = ACTIONS(649), + [anon_sym_ref] = ACTIONS(652), + [sym_identifier] = ACTIONS(655), + [sym_super] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + }, + [101] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(574), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_RBRACK] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_COLON_COLON] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(613), + [anon_sym_i8] = ACTIONS(613), + [anon_sym_u16] = ACTIONS(613), + [anon_sym_i16] = ACTIONS(613), + [anon_sym_u32] = ACTIONS(613), + [anon_sym_i32] = ACTIONS(613), + [anon_sym_u64] = ACTIONS(613), + [anon_sym_i64] = ACTIONS(613), + [anon_sym_u128] = ACTIONS(613), + [anon_sym_i128] = ACTIONS(613), + [anon_sym_usize] = ACTIONS(613), + [anon_sym_bool] = ACTIONS(613), + [anon_sym_ByteArray] = ACTIONS(613), + [anon_sym_felt252] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(625), + [anon_sym_if] = ACTIONS(628), + [anon_sym_loop] = ACTIONS(631), + [anon_sym_match] = ACTIONS(634), + [anon_sym_return] = ACTIONS(637), + [anon_sym_while] = ACTIONS(640), + [sym_numeric_literal] = ACTIONS(643), + [aux_sym_string_literal_token1] = ACTIONS(646), + [sym_shortstring_literal] = ACTIONS(643), + [anon_sym_true] = ACTIONS(649), + [anon_sym_false] = ACTIONS(649), + [anon_sym_ref] = ACTIONS(652), + [sym_identifier] = ACTIONS(655), + [sym_super] = ACTIONS(658), + [sym_line_comment] = ACTIONS(3), + }, + [102] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(587), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1232), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [103] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(543), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(661), + [anon_sym_COMMA] = ACTIONS(663), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [104] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(106), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(534), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(106), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(667), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [105] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(572), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1326), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [106] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(547), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_COMMA] = ACTIONS(671), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [107] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_named_argument] = STATE(1423), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(99), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(559), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [108] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(673), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [109] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(675), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [110] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(677), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [111] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(679), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [112] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(681), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [113] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(683), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [114] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(119), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(623), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(119), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(685), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [115] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(118), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(681), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(687), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [116] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(689), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [117] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(691), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [118] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(747), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [119] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(732), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [120] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1451), + [sym_let_condition] = STATE(1451), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [121] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1414), + [sym_let_condition] = STATE(1414), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [122] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(125), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [123] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(760), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym__condition] = STATE(1514), + [sym_let_condition] = STATE(1514), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_let] = ACTIONS(697), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [124] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1415), + [sym_let_condition] = STATE(1415), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [125] = { + [sym_macro_invocation] = STATE(471), + [sym_attribute_item] = STATE(382), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(611), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_enum_variant_list_repeat1] = STATE(382), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(553), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [126] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1420), + [sym_let_condition] = STATE(1420), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [127] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1433), + [sym_let_condition] = STATE(1433), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [128] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1417), + [sym_let_condition] = STATE(1417), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [129] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym__condition] = STATE(1432), + [sym_let_condition] = STATE(1432), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(693), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [130] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(686), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(701), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [131] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(636), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(703), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [132] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(672), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(705), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [133] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(657), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(707), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [134] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(602), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(709), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [135] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(602), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(709), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [136] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(672), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_tuple_expression_repeat1] = STATE(133), + [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(705), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [137] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(674), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(711), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [138] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(733), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [aux_sym_tuple_expression_repeat1] = STATE(138), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(719), + [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_ByteArray] = ACTIONS(730), + [anon_sym_felt252] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(716), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(739), + [anon_sym_default] = ACTIONS(742), + [anon_sym_if] = ACTIONS(745), + [anon_sym_loop] = ACTIONS(748), + [anon_sym_match] = ACTIONS(751), + [anon_sym_return] = ACTIONS(754), + [anon_sym_while] = ACTIONS(757), + [sym_numeric_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(763), + [sym_shortstring_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(766), + [anon_sym_false] = ACTIONS(766), + [anon_sym_ref] = ACTIONS(769), + [sym_identifier] = ACTIONS(772), + [sym_super] = ACTIONS(775), + [sym_line_comment] = ACTIONS(3), + }, + [139] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(419), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_mutable_specifier] = ACTIONS(778), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [140] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_mutable_specifier] = ACTIONS(780), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [141] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(419), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_mutable_specifier] = ACTIONS(782), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [142] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(746), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [143] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(724), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [144] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(727), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [145] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(710), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [146] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(470), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [147] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(473), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [148] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(437), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [149] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(479), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [150] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(483), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [151] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(461), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [152] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(460), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [153] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(711), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [154] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(713), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [155] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(458), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [156] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(735), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [157] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(468), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [158] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(426), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [159] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(427), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [160] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(694), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [161] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [162] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [163] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [164] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(726), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [165] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(754), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [166] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(736), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [167] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(756), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [168] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(463), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [169] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(757), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [170] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(734), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [171] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(707), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(254), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(254), + [sym_if_expression] = STATE(254), + [sym_match_expression] = STATE(254), + [sym_while_expression] = STATE(254), + [sym_loop_expression] = STATE(254), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(784), + [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(786), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_match] = ACTIONS(790), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(792), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [172] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(427), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [173] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(709), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [174] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(697), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [175] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(758), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [176] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(705), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [177] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(706), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(249), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(249), + [sym_if_expression] = STATE(249), + [sym_match_expression] = STATE(249), + [sym_while_expression] = STATE(249), + [sym_loop_expression] = STATE(249), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(784), + [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(786), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_match] = ACTIONS(790), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(792), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [178] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(737), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [179] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(702), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [180] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(722), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [181] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(426), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [182] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(708), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [183] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(743), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(794), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [184] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(728), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [185] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(731), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [186] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(680), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [187] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(740), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [188] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(619), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [189] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(620), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [190] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [191] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(698), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [192] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(433), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [193] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(627), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [194] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(701), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [195] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(625), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [196] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(673), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(249), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(249), + [sym_if_expression] = STATE(249), + [sym_match_expression] = STATE(249), + [sym_while_expression] = STATE(249), + [sym_loop_expression] = STATE(249), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(784), + [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(786), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_match] = ACTIONS(790), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(792), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [197] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(748), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [198] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(738), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [199] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(696), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [200] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(426), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [201] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(693), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [202] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(426), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [203] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(742), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [204] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(759), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [205] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(764), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [206] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(743), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [207] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(633), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [208] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(762), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [209] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(661), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [210] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(725), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [211] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(739), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [212] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(716), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [213] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(604), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(254), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(254), + [sym_if_expression] = STATE(254), + [sym_match_expression] = STATE(254), + [sym_while_expression] = STATE(254), + [sym_loop_expression] = STATE(254), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(784), + [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(786), + [anon_sym_loop] = ACTIONS(788), + [anon_sym_match] = ACTIONS(790), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(792), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, + [214] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1158), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(622), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(433), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_ByteArray] = ACTIONS(422), + [anon_sym_felt252] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_AT] = ACTIONS(424), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(428), + [anon_sym_if] = ACTIONS(224), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(430), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [sym_super] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + }, + [215] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(745), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [216] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(750), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [217] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(751), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [218] = { + [sym_macro_invocation] = STATE(803), + [sym_generic_type_with_turbofish] = STATE(1206), + [sym__literal] = STATE(807), + [sym_negative_literal] = STATE(805), + [sym_string_literal] = STATE(805), + [sym_boolean_literal] = STATE(805), + [sym_scoped_identifier] = STATE(613), + [sym_scoped_type_identifier_in_expression_position] = STATE(1447), + [sym_expression] = STATE(752), + [sym_generic_function] = STATE(807), + [sym_tuple_expression] = STATE(807), + [sym_return_expression] = STATE(807), + [sym_struct_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_break_expression] = STATE(807), + [sym_continue_expression] = STATE(807), + [sym_index_expression] = STATE(807), + [sym_array_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_unit_expression] = STATE(807), + [sym_compound_assignment_expr] = STATE(807), + [sym__expression_ending_with_block] = STATE(807), + [sym_unary_expression] = STATE(807), + [sym_try_expression] = STATE(807), + [sym_field_expression] = STATE(741), + [sym_block] = STATE(807), + [sym_if_expression] = STATE(807), + [sym_match_expression] = STATE(807), + [sym_while_expression] = STATE(807), + [sym_loop_expression] = STATE(807), + [sym_binary_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_reference_expression] = STATE(807), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(380), + [anon_sym_i8] = ACTIONS(380), + [anon_sym_u16] = ACTIONS(380), + [anon_sym_i16] = ACTIONS(380), + [anon_sym_u32] = ACTIONS(380), + [anon_sym_i32] = ACTIONS(380), + [anon_sym_u64] = ACTIONS(380), + [anon_sym_i64] = ACTIONS(380), + [anon_sym_u128] = ACTIONS(380), + [anon_sym_i128] = ACTIONS(380), + [anon_sym_usize] = ACTIONS(380), + [anon_sym_bool] = ACTIONS(380), + [anon_sym_ByteArray] = ACTIONS(380), + [anon_sym_felt252] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_break] = ACTIONS(384), + [anon_sym_continue] = ACTIONS(386), + [anon_sym_default] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(394), + [anon_sym_return] = ACTIONS(396), + [anon_sym_while] = ACTIONS(398), + [sym_numeric_literal] = ACTIONS(400), + [aux_sym_string_literal_token1] = ACTIONS(402), + [sym_shortstring_literal] = ACTIONS(400), + [anon_sym_true] = ACTIONS(404), + [anon_sym_false] = ACTIONS(404), + [anon_sym_ref] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + }, + [219] = { + [sym_macro_invocation] = STATE(471), + [sym_generic_type_with_turbofish] = STATE(1246), + [sym__literal] = STATE(459), + [sym_negative_literal] = STATE(480), + [sym_string_literal] = STATE(480), + [sym_boolean_literal] = STATE(480), + [sym_scoped_identifier] = STATE(436), + [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [sym_expression] = STATE(659), + [sym_generic_function] = STATE(459), + [sym_tuple_expression] = STATE(459), + [sym_return_expression] = STATE(459), + [sym_struct_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_break_expression] = STATE(459), + [sym_continue_expression] = STATE(459), + [sym_index_expression] = STATE(459), + [sym_array_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_unit_expression] = STATE(459), + [sym_compound_assignment_expr] = STATE(459), + [sym__expression_ending_with_block] = STATE(459), + [sym_unary_expression] = STATE(459), + [sym_try_expression] = STATE(459), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(459), + [sym_if_expression] = STATE(459), + [sym_match_expression] = STATE(459), + [sym_while_expression] = STATE(459), + [sym_loop_expression] = STATE(459), + [sym_binary_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_reference_expression] = STATE(459), + [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(224), + [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(65), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_ref] = ACTIONS(71), + [sym_identifier] = ACTIONS(73), + [sym_super] = ACTIONS(75), + [sym_line_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(466), 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(468), 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(537), 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(539), 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(517), 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(519), 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(505), 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(507), 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(497), 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(499), 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(521), 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(523), 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(474), 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(476), 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] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(798), 1, + anon_sym_else, + STATE(253), 1, + sym_else_clause, + ACTIONS(545), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(547), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [560] = 33, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(800), 1, + anon_sym_POUND, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(804), 1, + anon_sym_COMMA, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(810), 1, + anon_sym__, + ACTIONS(812), 1, + anon_sym_RPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + STATE(338), 1, + sym_attribute_item, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1162), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [686] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(838), 1, + anon_sym_RBRACE, + ACTIONS(840), 1, + anon_sym_impl, + ACTIONS(843), 1, + anon_sym_SEMI, + ACTIONS(846), 1, + anon_sym_trait, + ACTIONS(849), 1, + anon_sym_type, + ACTIONS(852), 1, + anon_sym_const, + ACTIONS(855), 1, + anon_sym_POUND, + ACTIONS(858), 1, + anon_sym_mod, + ACTIONS(861), 1, + anon_sym_struct, + ACTIONS(864), 1, + anon_sym_enum, + ACTIONS(867), 1, + anon_sym_fn, + ACTIONS(870), 1, + anon_sym_let, + ACTIONS(873), 1, + anon_sym_use, + ACTIONS(876), 1, + anon_sym_COLON_COLON, + ACTIONS(882), 1, + anon_sym_default, + ACTIONS(885), 1, + anon_sym_extern, + ACTIONS(888), 1, + anon_sym_pub, + ACTIONS(891), 1, + sym_identifier, + STATE(563), 1, + sym_extern_type, + STATE(850), 1, + sym_visibility_modifier, + STATE(1154), 1, + sym_extern, + STATE(1205), 1, + sym_function, + STATE(1460), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(879), 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(229), 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, + [799] = 32, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(800), 1, + anon_sym_POUND, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + ACTIONS(894), 1, + anon_sym__, + ACTIONS(896), 1, + anon_sym_RPAREN, + STATE(337), 1, + sym_attribute_item, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1353), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [922] = 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(898), 1, + anon_sym_RBRACE, + ACTIONS(900), 1, + anon_sym_impl, + ACTIONS(902), 1, + anon_sym_SEMI, + ACTIONS(904), 1, + anon_sym_trait, + ACTIONS(906), 1, + anon_sym_type, + ACTIONS(908), 1, + anon_sym_const, + ACTIONS(910), 1, + anon_sym_POUND, + ACTIONS(912), 1, + anon_sym_mod, + ACTIONS(914), 1, + anon_sym_struct, + ACTIONS(916), 1, + anon_sym_enum, + ACTIONS(918), 1, + anon_sym_let, + ACTIONS(920), 1, + anon_sym_use, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(926), 1, + anon_sym_default, + ACTIONS(928), 1, + sym_identifier, + STATE(563), 1, + sym_extern_type, + STATE(850), 1, + sym_visibility_modifier, + STATE(1154), 1, + sym_extern, + STATE(1205), 1, + sym_function, + STATE(1460), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(924), 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(229), 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, + [1035] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(505), 18, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(507), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1100] = 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(900), 1, + anon_sym_impl, + ACTIONS(902), 1, + anon_sym_SEMI, + ACTIONS(904), 1, + anon_sym_trait, + ACTIONS(906), 1, + anon_sym_type, + ACTIONS(908), 1, + anon_sym_const, + ACTIONS(910), 1, + anon_sym_POUND, + ACTIONS(912), 1, + anon_sym_mod, + ACTIONS(914), 1, + anon_sym_struct, + ACTIONS(916), 1, + anon_sym_enum, + ACTIONS(918), 1, + anon_sym_let, + ACTIONS(920), 1, + anon_sym_use, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(926), 1, + anon_sym_default, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(930), 1, + anon_sym_RBRACE, + STATE(563), 1, + sym_extern_type, + STATE(850), 1, + sym_visibility_modifier, + STATE(1154), 1, + sym_extern, + STATE(1205), 1, + sym_function, + STATE(1460), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(924), 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(231), 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, + [1213] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(521), 18, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(523), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1278] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(521), 25, + 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, + sym_numeric_literal, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [1343] = 32, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(800), 1, + anon_sym_POUND, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + ACTIONS(894), 1, + anon_sym__, + ACTIONS(932), 1, + anon_sym_RPAREN, + STATE(337), 1, + sym_attribute_item, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1353), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [1466] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(497), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(499), 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, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [1531] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(505), 25, + 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, + sym_numeric_literal, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_else, + sym_identifier, + sym_mutable_specifier, + sym_super, + [1596] = 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(900), 1, + anon_sym_impl, + ACTIONS(902), 1, + anon_sym_SEMI, + ACTIONS(904), 1, + anon_sym_trait, + ACTIONS(906), 1, + anon_sym_type, + ACTIONS(908), 1, + anon_sym_const, + ACTIONS(910), 1, + anon_sym_POUND, + ACTIONS(912), 1, + anon_sym_mod, + ACTIONS(914), 1, + anon_sym_struct, + ACTIONS(916), 1, + anon_sym_enum, + ACTIONS(918), 1, + anon_sym_let, + ACTIONS(920), 1, + anon_sym_use, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(926), 1, + anon_sym_default, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_RBRACE, + STATE(563), 1, + sym_extern_type, + STATE(850), 1, + sym_visibility_modifier, + STATE(1154), 1, + sym_extern, + STATE(1205), 1, + sym_function, + STATE(1460), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(924), 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(241), 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, + [1709] = 32, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(800), 1, + anon_sym_POUND, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + ACTIONS(894), 1, + anon_sym__, + ACTIONS(936), 1, + anon_sym_RPAREN, + STATE(337), 1, + sym_attribute_item, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1353), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [1832] = 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(900), 1, + anon_sym_impl, + ACTIONS(902), 1, + anon_sym_SEMI, + ACTIONS(904), 1, + anon_sym_trait, + ACTIONS(906), 1, + anon_sym_type, + ACTIONS(908), 1, + anon_sym_const, + ACTIONS(910), 1, + anon_sym_POUND, + ACTIONS(912), 1, + anon_sym_mod, + ACTIONS(914), 1, + anon_sym_struct, + ACTIONS(916), 1, + anon_sym_enum, + ACTIONS(918), 1, + anon_sym_let, + ACTIONS(920), 1, + anon_sym_use, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(926), 1, + anon_sym_default, + ACTIONS(928), 1, + sym_identifier, + ACTIONS(938), 1, + anon_sym_RBRACE, + STATE(563), 1, + sym_extern_type, + STATE(850), 1, + sym_visibility_modifier, + STATE(1154), 1, + sym_extern, + STATE(1205), 1, + sym_function, + STATE(1460), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(924), 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(229), 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, + [1945] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(497), 18, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(499), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [2010] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(513), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(515), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2074] = 31, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(800), 1, + anon_sym_POUND, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + ACTIONS(894), 1, + anon_sym__, + STATE(337), 1, + sym_attribute_item, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1353), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [2194] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(505), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(507), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2258] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(497), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(499), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2322] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(521), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(523), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2386] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(541), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(543), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2450] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(940), 7, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(567), 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(563), 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(942), 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_DASH, + anon_sym_PIPE, + anon_sym_default, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2518] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(509), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(511), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2582] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(501), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(503), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2646] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(493), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(495), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2710] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(529), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(531), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2774] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(944), 7, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(567), 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(563), 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(946), 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_DASH, + anon_sym_PIPE, + anon_sym_default, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2842] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(525), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(527), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2906] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(533), 25, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(535), 31, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [2970] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(948), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(950), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3033] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(952), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(954), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3096] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(956), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(958), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3159] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(960), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(962), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3222] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(964), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(966), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3285] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(968), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(970), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3348] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(972), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(974), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3411] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(976), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(978), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3474] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(980), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(982), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3537] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(984), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(986), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3600] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(988), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(990), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3663] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(992), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(994), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3726] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(996), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(998), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3789] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1000), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1002), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3852] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1004), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1006), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3915] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1008), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1010), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3978] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1012), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1014), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4041] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1016), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1018), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4104] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1020), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1022), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4167] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1024), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1026), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4230] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1028), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1030), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4293] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1032), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1034), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4356] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1036), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1038), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4419] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1040), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1042), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4482] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1044), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1046), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4545] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1048), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1050), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4608] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1052), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1054), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4671] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1056), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1058), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4734] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1060), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1062), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4797] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1064), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1066), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4860] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1068), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1070), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4923] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1072), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1074), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [4986] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1076), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1078), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5049] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1080), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1082), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5112] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1084), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1086), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5175] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1088), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1090), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5238] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1092), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1094), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5301] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1096), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1098), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5364] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1100), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1102), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5427] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1104), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1106), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5490] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1108), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1110), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5553] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1112), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1114), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5616] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1116), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1118), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5679] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1120), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1122), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5742] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1124), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1126), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5805] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1128), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1130), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5868] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1132), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1134), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5931] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1136), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1138), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [5994] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1140), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1142), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6057] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1144), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1146), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6120] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1148), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1150), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6183] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1152), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1154), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6246] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1156), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1158), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6309] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1160), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1162), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6372] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1164), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1166), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6435] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1168), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1170), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6498] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1172), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1174), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6561] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1176), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1178), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6624] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1180), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1182), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6687] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1184), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1186), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6750] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1188), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1190), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6813] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1192), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1194), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6876] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1198), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [6939] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1202), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7002] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1204), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1206), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7065] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1208), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1210), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7128] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1212), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1214), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7191] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1216), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1218), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7254] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1220), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1222), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7317] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1224), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1226), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7380] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1228), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1230), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7443] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1232), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1234), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7506] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1236), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1238), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7569] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1240), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1242), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7632] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1244), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1246), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7695] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1248), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1250), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7758] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1252), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1254), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7821] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1256), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1258), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7884] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1260), 16, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1262), 39, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7947] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1264), 1, + anon_sym_RBRACE, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + STATE(1557), 1, + sym_match_pattern, + STATE(1576), 1, + sym_last_match_arm, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(347), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [8061] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + ACTIONS(1296), 1, + anon_sym__, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1403), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [8175] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(808), 1, + anon_sym_LPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(822), 1, + anon_sym_default, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(830), 1, + anon_sym_ref, + ACTIONS(832), 1, + sym_identifier, + ACTIONS(834), 1, + sym_mutable_specifier, + ACTIONS(836), 1, + sym_super, + ACTIONS(1298), 1, + anon_sym__, + STATE(392), 1, + sym_ref_specifier, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_scoped_identifier, + STATE(1138), 1, + sym_generic_type_with_turbofish, + STATE(1140), 1, + sym_macro_invocation, + STATE(1430), 1, + sym__pattern, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1314), 2, + sym_parameter, + sym__type, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(814), 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, + [8289] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + ACTIONS(1300), 1, + anon_sym_RBRACE, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1497), 1, + sym_last_match_arm, + STATE(1546), 1, + sym_generic_type, + STATE(1557), 1, + sym_match_pattern, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(345), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [8403] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + ACTIONS(1302), 1, + anon_sym_RBRACE, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + STATE(1557), 1, + sym_match_pattern, + STATE(1592), 1, + sym_last_match_arm, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(346), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [8517] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + anon_sym_COMMA, + ACTIONS(1306), 1, + anon_sym_COLON_COLON, + ACTIONS(1308), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1312), 1, + anon_sym_RPAREN, + ACTIONS(1316), 1, + anon_sym_default, + ACTIONS(1318), 1, + sym_identifier, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1322), 1, + sym_super, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(978), 1, + sym_scoped_identifier, + STATE(1050), 1, + sym_generic_type_with_turbofish, + STATE(1089), 1, + sym__pattern, + STATE(1146), 1, + sym_macro_invocation, + STATE(1238), 1, + sym__type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1314), 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, + [8630] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1324), 1, + anon_sym_RBRACK, + ACTIONS(1326), 1, + anon_sym_COMMA, + ACTIONS(1328), 1, + anon_sym_COLON_COLON, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_default, + ACTIONS(1336), 1, + sym_identifier, + ACTIONS(1338), 1, + sym_super, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(987), 1, + sym_scoped_identifier, + STATE(1041), 1, + sym__pattern, + STATE(1081), 1, + sym_macro_invocation, + STATE(1092), 1, + sym_generic_type_with_turbofish, + STATE(1370), 1, + sym__type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1332), 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, + [8743] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + anon_sym_COMMA, + ACTIONS(1306), 1, + anon_sym_COLON_COLON, + ACTIONS(1308), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1316), 1, + anon_sym_default, + ACTIONS(1318), 1, + sym_identifier, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1322), 1, + sym_super, + ACTIONS(1340), 1, + anon_sym_RPAREN, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(978), 1, + sym_scoped_identifier, + STATE(1050), 1, + sym_generic_type_with_turbofish, + STATE(1089), 1, + sym__pattern, + STATE(1146), 1, + sym_macro_invocation, + STATE(1238), 1, + sym__type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1314), 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, + [8856] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(802), 1, + anon_sym_LBRACK, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + anon_sym_COMMA, + ACTIONS(1306), 1, + anon_sym_COLON_COLON, + ACTIONS(1308), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1316), 1, + anon_sym_default, + ACTIONS(1318), 1, + sym_identifier, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1322), 1, + sym_super, + ACTIONS(1342), 1, + anon_sym_RPAREN, + STATE(869), 1, + sym_generic_type, + STATE(933), 1, + sym_negative_literal, + STATE(954), 1, + sym_scoped_type_identifier, + STATE(978), 1, + sym_scoped_identifier, + STATE(1050), 1, + sym_generic_type_with_turbofish, + STATE(1089), 1, + sym__pattern, + STATE(1146), 1, + sym_macro_invocation, + STATE(1238), 1, + sym__type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(885), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(936), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1314), 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, + [8969] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1495), 1, + sym_last_match_arm, + STATE(1546), 1, + sym_generic_type, + STATE(1557), 1, + sym_match_pattern, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(348), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [9080] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + STATE(1557), 1, + sym_match_pattern, + STATE(1560), 1, + sym_last_match_arm, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(348), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [9191] = 28, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1532), 1, + sym_last_match_arm, + STATE(1546), 1, + sym_generic_type, + STATE(1557), 1, + sym_match_pattern, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(348), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(350), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [9302] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1344), 1, + anon_sym_POUND, + ACTIONS(1347), 1, + anon_sym_LBRACK, + ACTIONS(1350), 1, + anon_sym_COLON_COLON, + ACTIONS(1353), 1, + anon_sym_LPAREN, + ACTIONS(1356), 1, + anon_sym__, + ACTIONS(1362), 1, + anon_sym_DASH, + ACTIONS(1365), 1, + anon_sym_PIPE, + ACTIONS(1368), 1, + anon_sym_default, + ACTIONS(1374), 1, + aux_sym_string_literal_token1, + ACTIONS(1380), 1, + sym_identifier, + ACTIONS(1383), 1, + sym_mutable_specifier, + ACTIONS(1386), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1511), 1, + sym_match_pattern, + STATE(1546), 1, + sym_generic_type, + ACTIONS(1371), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1377), 2, + anon_sym_true, + anon_sym_false, + STATE(348), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(349), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1359), 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, + [9410] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + STATE(1572), 1, + sym_match_pattern, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(523), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [9514] = 26, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1266), 1, + anon_sym_POUND, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1219), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1530), 1, + sym_match_pattern, + STATE(1546), 1, + sym_generic_type, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(523), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1225), 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(1276), 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, + [9618] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1391), 1, + anon_sym_COMMA, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1397), 1, + anon_sym_RPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1045), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [9717] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1407), 1, + anon_sym_COMMA, + ACTIONS(1409), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1070), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [9816] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1411), 1, + anon_sym_COMMA, + ACTIONS(1413), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1130), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [9915] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1415), 1, + anon_sym_COMMA, + ACTIONS(1417), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1124), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10014] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1419), 1, + anon_sym_RBRACK, + ACTIONS(1421), 1, + anon_sym_COMMA, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1074), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10113] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1324), 1, + anon_sym_RBRACK, + ACTIONS(1326), 1, + anon_sym_COMMA, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1041), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10212] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1423), 1, + anon_sym_COMMA, + ACTIONS(1425), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1047), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10311] = 25, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1304), 1, + anon_sym_COMMA, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1427), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1089), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10410] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1429), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10506] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1431), 1, + anon_sym_RBRACK, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10602] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10698] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1435), 1, + anon_sym_RBRACK, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10794] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1437), 1, + anon_sym_RBRACK, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10890] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1439), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [10986] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1441), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11082] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1443), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11178] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1445), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11274] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1447), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11370] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1449), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11466] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1451), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11562] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1453), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11658] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1455), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11754] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1457), 1, + anon_sym_RBRACK, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11850] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1459), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [11946] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1221), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1225), 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(1276), 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, + [12039] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1064), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12132] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1461), 1, + sym_mutable_specifier, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1127), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12225] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(912), 1, + sym__pattern, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12318] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1075), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12411] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1188), 1, + sym_negative_literal, + STATE(1243), 1, + sym__pattern, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1225), 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(1276), 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, + [12504] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(939), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12597] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(599), 1, + anon_sym_POUND, + STATE(382), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(605), 14, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1463), 28, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [12654] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1228), 1, + sym__pattern, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12747] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1339), 1, + sym__pattern, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12840] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + ACTIONS(1465), 1, + sym_mutable_specifier, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1099), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [12933] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1379), 1, + sym__pattern, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [13026] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1046), 1, + sym__pattern, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [13119] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1365), 1, + sym__pattern, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [13212] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(911), 1, + sym__pattern, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [13305] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1268), 1, + anon_sym_LBRACK, + ACTIONS(1270), 1, + anon_sym_COLON_COLON, + ACTIONS(1272), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym__, + ACTIONS(1278), 1, + anon_sym_DASH, + ACTIONS(1280), 1, + anon_sym_PIPE, + ACTIONS(1282), 1, + anon_sym_default, + ACTIONS(1286), 1, + aux_sym_string_literal_token1, + ACTIONS(1290), 1, + sym_identifier, + ACTIONS(1292), 1, + sym_mutable_specifier, + ACTIONS(1294), 1, + sym_super, + STATE(981), 1, + sym_scoped_identifier, + STATE(1150), 1, + sym_scoped_type_identifier, + STATE(1170), 1, + sym__pattern, + STATE(1188), 1, + sym_negative_literal, + STATE(1406), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(1284), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(1288), 2, + anon_sym_true, + anon_sym_false, + STATE(1222), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1225), 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(1276), 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, + [13398] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1257), 1, + sym__pattern, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [13491] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_PIPE, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(1310), 1, + anon_sym__, + ACTIONS(1320), 1, + sym_mutable_specifier, + ACTIONS(1389), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_COLON_COLON, + ACTIONS(1395), 1, + anon_sym_LPAREN, + ACTIONS(1401), 1, + anon_sym_default, + ACTIONS(1403), 1, + sym_identifier, + ACTIONS(1405), 1, + sym_super, + STATE(870), 1, + sym_scoped_identifier, + STATE(933), 1, + sym_negative_literal, + STATE(1174), 1, + sym_scoped_type_identifier, + STATE(1348), 1, + sym__pattern, + STATE(1393), 1, + sym_generic_type_with_turbofish, + STATE(1546), 1, + sym_generic_type, + ACTIONS(824), 2, + sym_numeric_literal, + sym_shortstring_literal, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + STATE(934), 2, + sym_string_literal, + sym_boolean_literal, + STATE(936), 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(1399), 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, + [13584] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + anon_sym_GT, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [13674] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1485), 1, + anon_sym_GT, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [13764] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1487), 1, + anon_sym_GT, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [13854] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1489), 1, + anon_sym_GT, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [13944] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1491), 1, + anon_sym_GT, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [14034] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1493), 1, + anon_sym_GT, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [14124] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1151), 3, + sym__type, + sym__literal, + sym_block, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [14211] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1212), 3, + sym__type, + sym__literal, + sym_block, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [14298] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1385), 3, + sym__type, + sym__literal, + sym_block, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [14385] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(826), 1, + aux_sym_string_literal_token1, + ACTIONS(836), 1, + sym_super, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + ACTIONS(828), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1481), 2, + sym_numeric_literal, + sym_shortstring_literal, + STATE(1312), 3, + sym__type, + sym__literal, + sym_block, + STATE(1363), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [14472] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 15, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1198), 28, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [14523] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(728), 13, + 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, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1495), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [14571] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1499), 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(1497), 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, + [14616] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1503), 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(1501), 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, + [14661] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1507), 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(1505), 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, + [14706] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1511), 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(1509), 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, + [14751] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1515), 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(1513), 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, + [14796] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1519), 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(1517), 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, + [14841] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1523), 1, + anon_sym_BANG, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + STATE(439), 1, + sym_field_initializer_list, + ACTIONS(567), 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(563), 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, + [14894] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1529), 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(1527), 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, + [14939] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1531), 1, + anon_sym_LBRACE, + ACTIONS(1519), 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(1517), 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, + [14985] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1515), 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(1513), 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, + [15031] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1535), 1, + anon_sym_else, + STATE(79), 1, + sym_else_clause, + 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), 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, + [15079] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1537), 1, + anon_sym_LBRACE, + ACTIONS(1507), 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(1505), 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, + [15125] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1539), 1, + anon_sym_LBRACE, + ACTIONS(1499), 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(1497), 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, + [15171] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(499), 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(497), 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, + [15214] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1543), 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(1541), 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, + [15267] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1559), 1, + anon_sym_nopanic, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(985), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(1431), 1, + sym_nopanic, + ACTIONS(1553), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [15340] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1559), 1, + anon_sym_nopanic, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(980), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(1384), 1, + sym_nopanic, + ACTIONS(1563), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [15413] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1567), 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(1565), 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, + [15456] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(1523), 1, + anon_sym_BANG, + ACTIONS(1525), 1, + anon_sym_COLON_COLON, + ACTIONS(1569), 1, + anon_sym_COLON, + STATE(439), 1, + sym_field_initializer_list, + ACTIONS(567), 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(563), 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, + [15509] = 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), 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, + [15552] = 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), 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, + [15595] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1573), 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(1571), 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, + [15648] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1577), 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(1575), 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, + [15701] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1583), 1, + anon_sym_BANG, + ACTIONS(1585), 1, + anon_sym_COLON_COLON, + ACTIONS(1581), 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(1579), 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, + [15748] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1587), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [15793] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1591), 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(1589), 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, + [15836] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1593), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1597), 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(1595), 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, + [15881] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1559), 1, + anon_sym_nopanic, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(982), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(1396), 1, + sym_nopanic, + ACTIONS(1599), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [15954] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1603), 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(1601), 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, + [16007] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1559), 1, + anon_sym_nopanic, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(988), 1, + sym__type, + STATE(1340), 1, + sym_nopanic, + STATE(1362), 1, + sym_scoped_identifier, + ACTIONS(1605), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [16080] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1607), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1597), 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(1595), 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, + [16125] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1523), 1, + anon_sym_BANG, + ACTIONS(1609), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [16172] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [16230] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1619), 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(1617), 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, + [16272] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1623), 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(1621), 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, + [16314] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1627), 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(1625), 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(1631), 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(1629), 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] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1635), 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(1633), 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, + [16440] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1639), 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(1637), 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, + [16482] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1643), 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(1641), 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, + [16524] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1647), 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(1645), 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, + [16566] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1651), 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(1649), 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, + [16608] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1655), 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(1653), 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, + [16650] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1659), 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(1657), 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, + [16692] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1663), 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(1661), 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, + [16734] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1667), 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(1665), 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, + [16776] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1671), 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(1669), 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, + [16818] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1675), 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(1673), 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, + [16860] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(487), 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(485), 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, + [16902] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1597), 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(1595), 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, + [16944] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1679), 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(1677), 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, + [16986] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1683), 1, + anon_sym_EQ, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1681), 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, + [17058] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1701), 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(1699), 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, + [17100] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1705), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1703), 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, + [17172] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(567), 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(563), 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, + [17214] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [17270] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1575), 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, + [17340] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1709), 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(1707), 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, + [17382] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1713), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1711), 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, + [17454] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1717), 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(1715), 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, + [17496] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1721), 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(1719), 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, + [17538] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1726), 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(1723), 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, + [17580] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1731), 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(1729), 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, + [17622] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1575), 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, + [17686] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1735), 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(1733), 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, + [17728] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [17782] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(567), 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(563), 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, + [17824] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [17868] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1689), 1, + anon_sym_AMP, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1575), 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, + [17928] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1741), 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(1739), 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, + [17970] = 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, + [18012] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1745), 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(1743), 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, + [18054] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1749), 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(1747), 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, + [18096] = 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(1751), 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, + [18138] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1575), 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, + [18200] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(460), 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(458), 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, + [18242] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 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(1755), 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, + [18284] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1761), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1759), 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, + [18356] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1575), 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, + [18424] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1765), 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(1763), 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, + [18466] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1769), 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(1767), 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, + [18508] = 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, + [18549] = 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, + [18590] = 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, + [18631] = 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, + [18672] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1771), 1, + anon_sym_LBRACE, + ACTIONS(1773), 1, + anon_sym_BANG, + ACTIONS(1775), 1, + anon_sym_COLON_COLON, + STATE(785), 1, + sym_field_initializer_list, + ACTIONS(567), 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(563), 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, + [18721] = 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, + [18762] = 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, + [18803] = 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, + [18844] = 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, + [18885] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(661), 1, + anon_sym_RBRACK, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_SEMI, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1781), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1204), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18964] = 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, + [19005] = 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, + [19046] = 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, + [19087] = 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, + [19128] = 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, + [19169] = 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, + [19210] = 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, + [19251] = 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, + [19292] = 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, + [19333] = 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, + [19374] = 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, + [19415] = 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, + [19456] = 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, + [19497] = 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, + [19538] = 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, + [19579] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1232), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1234), 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, + [19620] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(964), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(966), 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, + [19661] = 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, + [19702] = 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, + [19743] = 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, + [19784] = 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, + [19825] = 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, + [19866] = 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, + [19907] = 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, + [19948] = 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, + [19989] = 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, + [20030] = 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, + [20071] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1785), 1, + anon_sym_POUND, + STATE(523), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + ACTIONS(1788), 8, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1790), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [20116] = 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, + [20157] = 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, + [20198] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(956), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(958), 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, + [20239] = 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, + [20280] = 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, + [20321] = 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, + [20362] = 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, + [20403] = 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, + [20444] = 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, + [20485] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(952), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(954), 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, + [20526] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(669), 1, + anon_sym_RBRACK, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1792), 1, + anon_sym_SEMI, + ACTIONS(1794), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1251), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [20605] = 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, + [20646] = 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, + [20687] = 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, + [20728] = 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, + [20769] = 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, + [20810] = 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, + [20851] = 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, + [20892] = 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, + [20933] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(689), 1, + anon_sym_RBRACK, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1796), 1, + anon_sym_SEMI, + ACTIONS(1798), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1190), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21012] = 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, + [21053] = 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, + [21094] = 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, + [21135] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(679), 1, + anon_sym_RBRACK, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1800), 1, + anon_sym_SEMI, + ACTIONS(1802), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1303), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21214] = 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, + [21255] = 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, + [21296] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(948), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(950), 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, + [21337] = 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, + [21378] = 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, + [21419] = 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, + [21460] = 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, + [21501] = 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, + [21542] = 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, + [21583] = 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, + [21624] = 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, + [21665] = 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, + [21706] = 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, + [21747] = 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, + [21788] = 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, + [21829] = 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, + [21870] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(960), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(962), 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, + [21911] = 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, + [21952] = 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, + [21993] = 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, + [22034] = 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, + [22075] = 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, + [22116] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1814), 1, + anon_sym_GT, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [22182] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1537), 1, + anon_sym_LBRACE, + ACTIONS(1507), 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(1505), 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, + [22224] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(587), 1, + anon_sym_RPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1822), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1277), 1, + aux_sym_arguments_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22300] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1531), 1, + anon_sym_LBRACE, + ACTIONS(1519), 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(1517), 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, + [22342] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(673), 1, + anon_sym_RBRACK, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1824), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1266), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22418] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1826), 1, + anon_sym_RPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1238), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [22484] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1533), 1, + anon_sym_LBRACE, + ACTIONS(1515), 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(1513), 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, + [22526] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1832), 1, + anon_sym_COMMA, + ACTIONS(1834), 1, + anon_sym_RPAREN, + STATE(464), 1, + sym_arguments, + STATE(1324), 1, + aux_sym_arguments_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22602] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(675), 1, + anon_sym_RBRACK, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1836), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1331), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22678] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1523), 1, + anon_sym_BANG, + ACTIONS(1838), 1, + anon_sym_COLON_COLON, + STATE(439), 1, + sym_field_initializer_list, + ACTIONS(567), 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(563), 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, + [22724] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1840), 1, + anon_sym_COMMA, + ACTIONS(1842), 1, + anon_sym_RPAREN, + STATE(464), 1, + sym_arguments, + STATE(1231), 1, + aux_sym_arguments_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [22800] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_GT, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [22866] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + ACTIONS(1846), 1, + anon_sym_GT, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [22932] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + ACTIONS(1848), 1, + anon_sym_GT, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + ACTIONS(1850), 1, + anon_sym_GT, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + ACTIONS(1852), 1, + anon_sym_GT, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_GT, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [23196] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(581), 1, + anon_sym_RPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1856), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + STATE(1163), 1, + aux_sym_arguments_repeat1, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23272] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1539), 1, + anon_sym_LBRACE, + ACTIONS(1499), 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(1497), 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, + [23314] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1858), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(996), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23380] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1860), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(996), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23446] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1394), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23509] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1583), 1, + anon_sym_BANG, + ACTIONS(1862), 1, + anon_sym_COLON_COLON, + ACTIONS(1581), 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(1579), 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, + [23552] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1864), 1, + anon_sym_RBRACE, + ACTIONS(1866), 9, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1868), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [23593] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(875), 1, + sym__type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1362), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23656] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1870), 1, + anon_sym_BANG, + ACTIONS(1872), 1, + anon_sym_COLON_COLON, + ACTIONS(1581), 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(1579), 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, + [23699] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1543), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23762] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1249), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23825] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(206), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23898] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(991), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [23961] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1381), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24024] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1555), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24087] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(711), 1, + anon_sym_RPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24160] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1276), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24223] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1878), 1, + anon_sym_RBRACE, + ACTIONS(1880), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24296] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1368), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24359] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1367), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24422] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1594), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24485] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1882), 1, + anon_sym_RBRACE, + ACTIONS(1884), 9, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1886), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [24526] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24589] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1330), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24652] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1888), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24723] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(875), 1, + sym__type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24786] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1773), 1, + anon_sym_BANG, + ACTIONS(1890), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [24829] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1335), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24892] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1499), 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(1497), 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, + [24931] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1361), 1, + sym__type, + STATE(1364), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [24994] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1499), 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(1497), 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, + [25033] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1581), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [25096] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1892), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25167] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25238] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1295), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [25301] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1523), 1, + anon_sym_BANG, + ACTIONS(1896), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [25344] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1898), 1, + anon_sym_COMMA, + ACTIONS(1900), 1, + anon_sym_RPAREN, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25417] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1902), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25490] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1904), 1, + anon_sym_LBRACE, + ACTIONS(1906), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + STATE(80), 1, + sym_match_block, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1926), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25563] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(83), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25636] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25707] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1436), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [25770] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1932), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25841] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1820), 1, + sym_identifier, + STATE(1254), 1, + sym_generic_type, + STATE(1264), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(660), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1398), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [25904] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1499), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [25967] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1164), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [26030] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1934), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26101] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1936), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26174] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(212), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26247] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(709), 1, + anon_sym_RPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26320] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1207), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [26383] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1488), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [26446] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1938), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26519] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1940), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26592] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(97), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26665] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1942), 1, + anon_sym_else, + STATE(771), 1, + sym_else_clause, + 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, + [26708] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1944), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26781] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1607), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1597), 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(1595), 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, + [26822] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1593), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1597), 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(1595), 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, + [26863] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1253), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [26926] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1529), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [26989] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1946), 1, + sym_identifier, + STATE(1104), 1, + sym_generic_type, + STATE(1107), 1, + sym_generic_type_with_turbofish, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(667), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1220), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [27052] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1461), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [27115] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1948), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27188] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27261] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1950), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27334] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1462), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [27397] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1463), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [27460] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1906), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1952), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_match_block, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1926), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27533] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(85), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27606] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + ACTIONS(1954), 1, + anon_sym_RPAREN, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27679] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1956), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27750] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1958), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27821] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1960), 1, + sym_identifier, + STATE(1157), 1, + sym_generic_type_with_turbofish, + STATE(1159), 1, + sym_generic_type, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(819), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1350), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [27884] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1962), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27955] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1511), 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(1509), 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, + [27994] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1503), 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(1501), 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, + [28033] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1035), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [28096] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1529), 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(1527), 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, + [28135] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(996), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [28198] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1804), 1, + anon_sym_impl, + ACTIONS(1806), 1, + anon_sym_const, + ACTIONS(1808), 1, + anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(1964), 1, + sym_identifier, + STATE(1071), 1, + sym_generic_type_with_turbofish, + STATE(1072), 1, + sym_generic_type, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1816), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(819), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1261), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1812), 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, + [28261] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1515), 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(1513), 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, + [28300] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_AT, + ACTIONS(1479), 1, + anon_sym_default, + ACTIONS(1483), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(972), 1, + sym_scoped_type_identifier, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1378), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [28363] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1519), 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(1517), 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, + [28402] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1507), 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(1505), 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, + [28441] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(707), 1, + anon_sym_RPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28514] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1966), 1, + anon_sym_RBRACE, + ACTIONS(1968), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28587] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + ACTIONS(1970), 1, + anon_sym_RPAREN, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28660] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(214), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28733] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1370), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [28796] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1972), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28867] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(875), 1, + sym__type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [28930] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + ACTIONS(1974), 1, + anon_sym_RBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29003] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1906), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1976), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_arguments, + STATE(777), 1, + sym_match_block, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1926), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29076] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1978), 1, + anon_sym_COMMA, + ACTIONS(1980), 1, + anon_sym_RPAREN, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29149] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1418), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [29212] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1515), 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(1513), 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, + [29251] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(81), 1, + anon_sym_RBRACE, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29324] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1519), 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(1517), 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, + [29363] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(705), 1, + anon_sym_RPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29436] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1262), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [29499] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1402), 1, + sym_scoped_identifier, + STATE(1577), 1, + sym__type, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [29562] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1507), 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(1505), 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, + [29601] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + anon_sym_AT, + ACTIONS(1557), 1, + anon_sym_default, + ACTIONS(1561), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(996), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [29664] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(806), 1, + anon_sym_COLON_COLON, + ACTIONS(820), 1, + anon_sym_AT, + ACTIONS(836), 1, + sym_super, + ACTIONS(1469), 1, + anon_sym_LBRACK, + ACTIONS(1471), 1, + anon_sym_LPAREN, + ACTIONS(1828), 1, + anon_sym_default, + ACTIONS(1830), 1, + sym_identifier, + STATE(866), 1, + sym_generic_type_with_turbofish, + STATE(869), 1, + sym_generic_type, + STATE(886), 1, + sym_scoped_type_identifier, + STATE(1399), 1, + sym__type, + STATE(1402), 1, + sym_scoped_identifier, + STATE(885), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1473), 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, + [29727] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 9, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AT, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1198), 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, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_mutable_specifier, + sym_super, + [29766] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1575), 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, + [29826] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1906), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1982), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1926), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29896] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1866), 9, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1868), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [29934] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [29984] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(1577), 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(1575), 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, + [30032] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1713), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1711), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30100] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 9, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1198), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [30138] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1593), 1, + anon_sym_COLON_COLON, + ACTIONS(1597), 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(1595), 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, + [30178] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1916), 1, + anon_sym_AMP, + STATE(464), 1, + sym_arguments, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1575), 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, + [30234] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1992), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30304] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1607), 1, + anon_sym_COLON_COLON, + ACTIONS(1597), 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(1595), 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, + [30344] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1994), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [30384] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(1603), 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(1601), 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, + [30432] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1996), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30502] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1998), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30572] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + STATE(464), 1, + sym_arguments, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1575), 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, + [30630] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1575), 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, + [30694] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1575), 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, + [30760] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [30812] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(499), 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(497), 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, + [30850] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1705), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1703), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30918] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1884), 9, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1886), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [30956] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1591), 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(1589), 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, + [30994] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1982), 1, + anon_sym_EQ_GT, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2000), 1, + anon_sym_EQ, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + ACTIONS(2016), 1, + anon_sym_PIPE_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2020), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31064] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1761), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1759), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31132] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1567), 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(1565), 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, + [31170] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1683), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1681), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31238] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1874), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31308] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2024), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31378] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2026), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31448] = 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), 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, + [31486] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2028), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31556] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31626] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2032), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31696] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2034), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31766] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2036), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31836] = 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), 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, + [31874] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1906), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_CARET, + ACTIONS(1916), 1, + anon_sym_AMP, + ACTIONS(1918), 1, + anon_sym_PIPE, + ACTIONS(1920), 1, + anon_sym_AMP_AMP, + ACTIONS(1922), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2038), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_arguments, + ACTIONS(1910), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1928), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1926), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31944] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + STATE(464), 1, + sym_arguments, + ACTIONS(1912), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1908), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [31998] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2040), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32068] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1876), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32138] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2042), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32208] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2044), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32278] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2046), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32348] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2048), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32418] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2050), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32488] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2052), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32558] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2054), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32628] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2056), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [32668] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2058), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [32738] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(1573), 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(1571), 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, + [32786] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1092), 9, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1094), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [32824] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1705), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + ACTIONS(2016), 1, + anon_sym_PIPE_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1703), 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, + [32892] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [32944] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2060), 1, + anon_sym_COMMA, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33014] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2062), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33084] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2064), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33154] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1575), 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, + [33220] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1575), 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, + [33284] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + STATE(791), 1, + sym_arguments, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1575), 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, + [33342] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [33396] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2010), 1, + anon_sym_AMP, + STATE(791), 1, + sym_arguments, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1575), 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, + [33452] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1761), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + ACTIONS(2016), 1, + anon_sym_PIPE_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1759), 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, + [33520] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1577), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 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, + [33570] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1575), 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, + [33630] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1713), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + ACTIONS(2016), 1, + anon_sym_PIPE_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1711), 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, + [33698] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2066), 1, + anon_sym_RBRACK, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33768] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2000), 1, + anon_sym_EQ, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + ACTIONS(2016), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2038), 1, + anon_sym_EQ_GT, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2020), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33838] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1683), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + ACTIONS(2008), 1, + anon_sym_CARET, + ACTIONS(2010), 1, + anon_sym_AMP, + ACTIONS(2012), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, + anon_sym_AMP_AMP, + ACTIONS(2016), 1, + anon_sym_PIPE_PIPE, + STATE(791), 1, + sym_arguments, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2006), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2018), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2002), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2022), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1681), 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, + [33906] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2068), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [33976] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1984), 1, + anon_sym_LBRACK, + ACTIONS(1986), 1, + anon_sym_LPAREN, + ACTIONS(1988), 1, + anon_sym_DOT, + ACTIONS(1990), 1, + anon_sym_QMARK, + STATE(791), 1, + sym_arguments, + ACTIONS(1543), 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(1541), 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, + [34024] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1545), 1, + anon_sym_LBRACK, + ACTIONS(1547), 1, + anon_sym_LPAREN, + ACTIONS(1549), 1, + anon_sym_DOT, + ACTIONS(1551), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_AMP, + ACTIONS(1691), 1, + anon_sym_PIPE, + ACTIONS(1693), 1, + anon_sym_AMP_AMP, + ACTIONS(1695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2070), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_arguments, + ACTIONS(1613), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1615), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1685), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1783), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34094] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2072), 1, + anon_sym_COLON_COLON, + ACTIONS(567), 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(563), 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, + [34134] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(487), 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(485), 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, + [34171] = 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), 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, + [34208] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1675), 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(1673), 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, + [34245] = 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), 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, + [34282] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1679), 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(1677), 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, + [34319] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(531), 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(529), 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, + [34356] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1655), 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(1653), 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, + [34393] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1627), 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(1625), 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, + [34430] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(495), 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(493), 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, + [34467] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1643), 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(1641), 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, + [34504] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1741), 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(1739), 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, + [34541] = 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, + [34578] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1735), 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(1733), 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, + [34615] = 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, + [34652] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1745), 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(1743), 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, + [34689] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1647), 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(1645), 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, + [34726] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1709), 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(1707), 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, + [34763] = 12, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2076), 1, + anon_sym_RBRACE, + ACTIONS(2078), 1, + anon_sym_COMMA, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1279), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [34818] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1671), 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(1669), 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, + [34855] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1623), 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(1621), 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, + [34892] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1765), 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(1763), 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, + [34929] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1619), 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(1617), 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, + [34966] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1701), 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(1699), 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, + [35003] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(503), 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(501), 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, + [35040] = 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(1751), 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, + [35077] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1717), 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(1715), 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, + [35114] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1749), 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(1747), 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, + [35151] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1663), 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(1661), 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, + [35188] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1726), 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(1723), 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, + [35225] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 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(1755), 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, + [35262] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1639), 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(1637), 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, + [35299] = 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, + [35336] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1597), 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(1595), 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, + [35373] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1631), 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(1629), 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, + [35410] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1721), 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(1719), 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, + [35447] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1731), 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(1729), 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, + [35484] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1635), 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(1633), 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, + [35521] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(567), 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(563), 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, + [35558] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1651), 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(1649), 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, + [35595] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(460), 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(458), 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, + [35632] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2090), 8, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + sym_numeric_literal, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2092), 21, + 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, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [35669] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(567), 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(563), 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, + [35706] = 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, + [35743] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1659), 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(1657), 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, + [35780] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1667), 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(1665), 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, + [35817] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1769), 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(1767), 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, + [35854] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + ACTIONS(2094), 1, + anon_sym_RBRACE, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1400), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [35906] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + ACTIONS(2096), 1, + anon_sym_RBRACE, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1400), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [35958] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1573), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [36007] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1517), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [36056] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1520), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [36105] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1400), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [36154] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2080), 1, + anon_sym_COLON_COLON, + ACTIONS(2082), 1, + anon_sym_STAR, + ACTIONS(2086), 1, + anon_sym_default, + ACTIONS(2088), 1, + sym_identifier, + STATE(998), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + STATE(1569), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2084), 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, + [36203] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2098), 1, + anon_sym_POUND, + STATE(819), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(605), 3, + anon_sym_COLON_COLON, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1463), 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, + [36240] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 4, + anon_sym_POUND, + anon_sym_COLON_COLON, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1198), 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, + [36271] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1810), 1, + anon_sym_COLON_COLON, + ACTIONS(1818), 1, + anon_sym_default, + ACTIONS(2101), 1, + sym_identifier, + STATE(1182), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1443), 1, + sym_scoped_type_identifier, + STATE(1501), 1, + sym_scoped_identifier, + ACTIONS(1812), 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, + [36313] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + STATE(1590), 1, + sym_attribute, + ACTIONS(2103), 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, + [36352] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1521), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36391] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1503), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36430] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1482), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36469] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1477), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36508] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1505), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36547] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1473), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36586] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1531), 1, + sym_generic_type_with_turbofish, + STATE(1542), 1, + sym_attribute, + ACTIONS(2103), 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, + [36625] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1490), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36664] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1470), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36703] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(922), 1, + anon_sym_COLON_COLON, + ACTIONS(2105), 1, + anon_sym_default, + ACTIONS(2107), 1, + sym_identifier, + STATE(960), 1, + sym_scoped_identifier, + STATE(1500), 1, + sym_attribute, + STATE(1531), 1, + sym_generic_type_with_turbofish, + ACTIONS(2103), 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, + [36742] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2113), 1, + anon_sym_default, + ACTIONS(2115), 1, + sym_identifier, + STATE(1336), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + ACTIONS(2111), 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, + [36778] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2109), 1, + anon_sym_COLON_COLON, + ACTIONS(2119), 1, + anon_sym_default, + ACTIONS(2121), 1, + sym_identifier, + STATE(1373), 1, + sym_scoped_identifier, + STATE(1516), 1, + sym_generic_type_with_turbofish, + ACTIONS(2117), 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, + [36814] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1499), 1, + anon_sym_COLON, + ACTIONS(1497), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2123), 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, + [36840] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1515), 1, + anon_sym_COLON, + ACTIONS(1513), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2125), 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, + [36866] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1519), 1, + anon_sym_COLON, + ACTIONS(1517), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2127), 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, + [36892] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1507), 1, + anon_sym_COLON, + ACTIONS(1505), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + ACTIONS(2129), 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, + [36918] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2131), 1, + anon_sym_LBRACE, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2139), 1, + anon_sym_COLON_COLON, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2133), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [36952] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1515), 1, + anon_sym_COLON, + ACTIONS(2125), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1513), 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, + [36975] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1499), 1, + anon_sym_COLON, + ACTIONS(2123), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1497), 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, + [36998] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1519), 1, + anon_sym_COLON, + ACTIONS(2127), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1517), 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, + [37021] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1515), 1, + anon_sym_COLON, + ACTIONS(1513), 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, + [37042] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1519), 1, + anon_sym_COLON, + ACTIONS(1517), 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, + [37063] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1499), 1, + anon_sym_COLON, + ACTIONS(1497), 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, + [37084] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1507), 1, + anon_sym_COLON, + ACTIONS(1505), 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, + [37105] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1507), 1, + anon_sym_COLON, + ACTIONS(2129), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1505), 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, + [37128] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1593), 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, + [37146] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(466), 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, + [37164] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2145), 1, + anon_sym_impl, + ACTIONS(2147), 1, + anon_sym_trait, + ACTIONS(2149), 1, + anon_sym_type, + ACTIONS(2151), 1, + anon_sym_const, + ACTIONS(2153), 1, + anon_sym_mod, + ACTIONS(2155), 1, + anon_sym_struct, + ACTIONS(2157), 1, + anon_sym_enum, + ACTIONS(2159), 1, + anon_sym_fn, + ACTIONS(2161), 1, + anon_sym_use, + ACTIONS(2163), 1, + anon_sym_extern, + STATE(1178), 1, + sym_extern, + STATE(1242), 1, + sym_function, + [37204] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(474), 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, + [37222] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(537), 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, + [37240] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1607), 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, + [37258] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2167), 1, + anon_sym_COLON, + ACTIONS(2169), 1, + anon_sym_BANG, + ACTIONS(2171), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + ACTIONS(2165), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [37286] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2159), 1, + anon_sym_fn, + ACTIONS(2163), 1, + anon_sym_extern, + ACTIONS(2173), 1, + anon_sym_impl, + ACTIONS(2175), 1, + anon_sym_trait, + ACTIONS(2177), 1, + anon_sym_type, + ACTIONS(2179), 1, + anon_sym_const, + ACTIONS(2181), 1, + anon_sym_mod, + ACTIONS(2183), 1, + anon_sym_struct, + ACTIONS(2185), 1, + anon_sym_enum, + ACTIONS(2187), 1, + anon_sym_use, + STATE(1183), 1, + sym_function, + STATE(1196), 1, + sym_extern, + [37326] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(517), 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, + [37344] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2189), 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, + [37362] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2191), 1, + anon_sym_RBRACK, + ACTIONS(2127), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1517), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37383] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2194), 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, + [37400] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2196), 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, + [37417] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2198), 1, + anon_sym_RBRACK, + ACTIONS(2123), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1497), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37438] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2201), 1, + anon_sym_RBRACK, + ACTIONS(2129), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1505), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37459] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2206), 1, + anon_sym_COLON_COLON, + ACTIONS(2204), 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, + [37478] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2208), 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, + [37495] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2210), 1, + anon_sym_RBRACK, + ACTIONS(2125), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1513), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37516] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2215), 1, + anon_sym_COLON_COLON, + ACTIONS(2213), 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, + [37535] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2217), 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, + [37554] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2125), 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, + [37571] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + ACTIONS(2213), 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, + [37590] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2223), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [37615] = 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, + [37631] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2131), 1, + anon_sym_LBRACE, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2227), 1, + anon_sym_SEMI, + ACTIONS(2229), 1, + anon_sym_RBRACK, + ACTIONS(2232), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2133), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [37663] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2234), 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, + [37679] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2236), 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, + [37695] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2238), 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, + [37711] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2240), 1, + anon_sym_RBRACE, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + anon_sym_COMMA, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + STATE(1179), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(928), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [37743] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2131), 1, + anon_sym_LBRACE, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2250), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2227), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37775] = 2, + ACTIONS(3), 1, + sym_line_comment, + 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, + [37791] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2250), 1, + anon_sym_COLON_COLON, + ACTIONS(2254), 1, + anon_sym_BANG, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2227), 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [37815] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2256), 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] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 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, + [37847] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2260), 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, + [37863] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2262), 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, + [37879] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2264), 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, + [37895] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2213), 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, + [37911] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(859), 1, + sym_type_arguments, + ACTIONS(2213), 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, + [37931] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2266), 1, + anon_sym_RBRACE, + ACTIONS(2268), 1, + anon_sym_COMMA, + STATE(1306), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(941), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [37963] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2270), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [37992] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2272), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38021] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2274), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38050] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2276), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38079] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2278), 1, + anon_sym_LBRACE, + ACTIONS(2280), 1, + anon_sym_BANG, + ACTIONS(2282), 1, + anon_sym_COLON_COLON, + ACTIONS(2284), 1, + anon_sym_LPAREN, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2133), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [38106] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2286), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38135] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2131), 1, + anon_sym_LBRACE, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2288), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2229), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38164] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2290), 1, + anon_sym_RBRACE, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1318), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [38191] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2300), 1, + anon_sym_RBRACE, + ACTIONS(2302), 1, + anon_sym_COMMA, + ACTIONS(2304), 1, + sym_identifier, + STATE(1305), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(955), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38220] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2250), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2227), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_nopanic, + [38243] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2306), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38272] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(485), 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, + [38287] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(2310), 1, + anon_sym_COMMA, + STATE(1186), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(964), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38316] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2312), 1, + anon_sym_RBRACE, + ACTIONS(2314), 1, + anon_sym_COMMA, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1281), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [38343] = 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, + [38358] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(2316), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [38377] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(489), 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, + [38392] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2318), 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, + [38406] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2320), 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, + [38420] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2123), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2198), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1497), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [38438] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2322), 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, + [38452] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2324), 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, + [38466] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2326), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38492] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 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, + [38506] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 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, + [38520] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2332), 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, + [38534] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2334), 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, + [38548] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2336), 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, + [38562] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2338), 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, + [38576] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2340), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38602] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2125), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2210), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1513), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [38620] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2127), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2191), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1517), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [38638] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2342), 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, + [38652] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2344), 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, + [38666] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2129), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2201), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1505), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [38684] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2346), 1, + anon_sym_RBRACE, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1413), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [38708] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2348), 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, + [38722] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2350), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38748] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2352), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38774] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + STATE(1346), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(946), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38800] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + STATE(1296), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38826] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2354), 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, + [38840] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2356), 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, + [38854] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2358), 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, + [38868] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2360), 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, + [38882] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2362), 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, + [38896] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2362), 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, + [38910] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2364), 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, + [38924] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 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, + [38938] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2366), 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, + [38952] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2368), 1, + anon_sym_RBRACE, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1413), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [38976] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2370), 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] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2372), 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, + [39004] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + STATE(1299), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39030] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2374), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39056] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2376), 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, + [39070] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2378), 1, + anon_sym_RBRACE, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1413), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [39094] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2380), 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] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2248), 1, + sym_identifier, + STATE(1416), 1, + sym_enum_variant, + STATE(1442), 1, + sym_field_declaration, + STATE(1492), 1, + sym_visibility_modifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39134] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + ACTIONS(2382), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39160] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2384), 1, + anon_sym_COLON_COLON, + ACTIONS(2386), 1, + anon_sym_LT2, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2227), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [39182] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2388), 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, + [39196] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2390), 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, + [39210] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2392), 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, + [39224] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2394), 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, + [39238] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2396), 1, + anon_sym_RBRACE, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1413), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [39262] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2398), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_type_arguments, + ACTIONS(2213), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [39281] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + STATE(1201), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39304] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2169), 1, + anon_sym_BANG, + ACTIONS(2400), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + ACTIONS(2165), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39325] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym_numeric_literal, + ACTIONS(2298), 1, + sym_identifier, + STATE(1030), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1413), 2, + sym_shorthand_field_initializer, + sym_field_initializer, + [39346] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 1, + anon_sym_LBRACE, + ACTIONS(2404), 1, + anon_sym_EQ, + ACTIONS(2406), 1, + anon_sym_LBRACK, + ACTIONS(2408), 1, + anon_sym_RBRACK, + ACTIONS(2410), 1, + anon_sym_COLON_COLON, + ACTIONS(2412), 1, + anon_sym_LPAREN, + STATE(1476), 1, + sym_delim_token_tree, + [39371] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 1, + anon_sym_LBRACE, + ACTIONS(2406), 1, + anon_sym_LBRACK, + ACTIONS(2412), 1, + anon_sym_LPAREN, + ACTIONS(2414), 1, + anon_sym_EQ, + ACTIONS(2416), 1, + anon_sym_RBRACK, + ACTIONS(2418), 1, + anon_sym_COLON_COLON, + STATE(1475), 1, + sym_delim_token_tree, + [39396] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 1, + anon_sym_LBRACE, + ACTIONS(2406), 1, + anon_sym_LBRACK, + ACTIONS(2412), 1, + anon_sym_LPAREN, + ACTIONS(2414), 1, + anon_sym_EQ, + ACTIONS(2416), 1, + anon_sym_RBRACK, + ACTIONS(2420), 1, + anon_sym_COLON_COLON, + STATE(1475), 1, + sym_delim_token_tree, + [39421] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 1, + anon_sym_LBRACE, + ACTIONS(2406), 1, + anon_sym_LBRACK, + ACTIONS(2412), 1, + anon_sym_LPAREN, + ACTIONS(2414), 1, + anon_sym_EQ, + ACTIONS(2416), 1, + anon_sym_RBRACK, + ACTIONS(2422), 1, + anon_sym_COLON_COLON, + STATE(1475), 1, + sym_delim_token_tree, + [39446] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2169), 1, + anon_sym_BANG, + ACTIONS(2424), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + ACTIONS(2165), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [39467] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + STATE(1356), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(967), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39490] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + STATE(1284), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39513] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2426), 1, + anon_sym_BANG, + ACTIONS(2428), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + ACTIONS(2165), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39534] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2430), 1, + anon_sym_STAR, + STATE(853), 1, + sym_type_arguments, + STATE(1203), 1, + sym_use_list, + ACTIONS(2432), 2, + sym_identifier, + sym_super, + [39557] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2242), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_pub, + ACTIONS(2304), 1, + sym_identifier, + STATE(1419), 1, + sym_field_declaration, + STATE(1587), 1, + sym_visibility_modifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39580] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2430), 1, + anon_sym_STAR, + STATE(848), 1, + sym_type_arguments, + STATE(1203), 1, + sym_use_list, + ACTIONS(2432), 2, + sym_identifier, + sym_super, + [39603] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2434), 1, + anon_sym_STAR, + STATE(857), 1, + sym_type_arguments, + STATE(1217), 1, + sym_use_list, + ACTIONS(2436), 2, + sym_identifier, + sym_super, + [39626] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1505), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39638] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1517), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39650] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + STATE(859), 1, + sym_type_arguments, + ACTIONS(2213), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [39666] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2440), 1, + anon_sym_DASH_GT, + ACTIONS(2442), 1, + anon_sym_implicits, + ACTIONS(2444), 1, + anon_sym_nopanic, + STATE(1441), 1, + sym_nopanic, + ACTIONS(2438), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39686] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_function_repeat1, + STATE(1392), 1, + sym_nopanic, + ACTIONS(2446), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39706] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2450), 1, + anon_sym_COMMA, + ACTIONS(2452), 1, + anon_sym_COLON_COLON, + ACTIONS(2454), 1, + anon_sym_GT, + STATE(860), 1, + sym_type_arguments, + STATE(1286), 1, + aux_sym_type_parameters_repeat1, + [39728] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2452), 1, + anon_sym_COLON_COLON, + ACTIONS(2456), 1, + anon_sym_COMMA, + ACTIONS(2458), 1, + anon_sym_GT, + STATE(860), 1, + sym_type_arguments, + STATE(1259), 1, + aux_sym_type_parameters_repeat1, + [39750] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_function_repeat1, + STATE(1434), 1, + sym_nopanic, + ACTIONS(2460), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39770] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2462), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39788] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1513), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39800] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(977), 1, + aux_sym_function_repeat1, + STATE(1382), 1, + sym_nopanic, + ACTIONS(2464), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39820] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2280), 1, + anon_sym_BANG, + ACTIONS(2284), 1, + anon_sym_LPAREN, + ACTIONS(2466), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39838] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(984), 1, + aux_sym_function_repeat1, + STATE(1358), 1, + sym_nopanic, + ACTIONS(2468), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39858] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2165), 1, + anon_sym_PIPE, + ACTIONS(2167), 1, + anon_sym_COLON, + ACTIONS(2169), 1, + anon_sym_BANG, + ACTIONS(2470), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + [39880] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_function_repeat1, + STATE(1344), 1, + sym_nopanic, + ACTIONS(2472), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39900] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(986), 1, + aux_sym_function_repeat1, + STATE(1347), 1, + sym_nopanic, + ACTIONS(2474), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39920] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_function_repeat1, + STATE(1357), 1, + sym_nopanic, + ACTIONS(2476), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39940] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [39958] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2448), 1, + anon_sym_COMMA, + STATE(974), 1, + aux_sym_function_repeat1, + STATE(1383), 1, + sym_nopanic, + ACTIONS(2480), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [39978] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1497), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39990] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2484), 1, + anon_sym_DASH_GT, + ACTIONS(2486), 1, + anon_sym_implicits, + STATE(1424), 1, + sym_nopanic, + ACTIONS(2482), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40010] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2490), 1, + anon_sym_implicits, + STATE(1386), 1, + sym_nopanic, + ACTIONS(2488), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40027] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2494), 1, + anon_sym_SEMI, + ACTIONS(2496), 1, + anon_sym_LT, + STATE(326), 1, + sym_declaration_list, + STATE(1197), 1, + sym_type_parameters, + [40046] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(2206), 1, + anon_sym_COLON_COLON, + ACTIONS(2204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40063] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2498), 1, + anon_sym_POUND, + ACTIONS(1463), 2, + anon_sym_pub, + sym_identifier, + STATE(994), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40078] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2503), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_function_repeat1, + ACTIONS(2501), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_nopanic, + [40093] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2501), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_nopanic, + [40104] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2452), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2506), 2, + anon_sym_COMMA, + anon_sym_GT, + [40121] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2510), 1, + anon_sym_COLON_COLON, + ACTIONS(2512), 1, + anon_sym_as, + ACTIONS(2508), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40136] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2514), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40147] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2516), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40158] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2512), 1, + anon_sym_as, + ACTIONS(2518), 1, + anon_sym_COLON_COLON, + ACTIONS(2508), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40173] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2520), 1, + anon_sym_LBRACE, + ACTIONS(2522), 1, + anon_sym_SEMI, + STATE(567), 1, + sym_field_declaration_list, + STATE(1328), 1, + sym_type_parameters, + [40192] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2526), 1, + anon_sym_COLON_COLON, + ACTIONS(2528), 1, + anon_sym_as, + ACTIONS(2524), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40207] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2530), 1, + anon_sym_COMMA, + ACTIONS(2532), 1, + anon_sym_RPAREN, + STATE(1308), 1, + aux_sym_parameters_repeat1, + ACTIONS(2133), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40224] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2512), 1, + anon_sym_as, + ACTIONS(2534), 1, + anon_sym_COLON_COLON, + ACTIONS(2508), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [40239] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2536), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40250] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LPAREN, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + [40269] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2540), 1, + anon_sym_RBRACE, + ACTIONS(2542), 1, + anon_sym_COMMA, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + STATE(1173), 1, + sym_field_pattern, + [40288] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2548), 1, + anon_sym_POUND, + ACTIONS(605), 2, + sym_numeric_literal, + sym_identifier, + STATE(1009), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40303] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2551), 1, + anon_sym_RBRACE, + ACTIONS(2553), 1, + anon_sym_COMMA, + STATE(1194), 1, + sym_field_pattern, + [40322] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(2557), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_declaration_list, + STATE(1247), 1, + sym_type_parameters, + [40341] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2520), 1, + anon_sym_LBRACE, + ACTIONS(2559), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_field_declaration_list, + STATE(1255), 1, + sym_type_parameters, + [40360] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2204), 1, + anon_sym_SEMI, + ACTIONS(2561), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [40377] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2566), 1, + anon_sym_LBRACE, + ACTIONS(2568), 1, + anon_sym_SEMI, + STATE(258), 1, + sym_field_declaration_list, + STATE(1209), 1, + sym_type_parameters, + [40396] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2430), 1, + anon_sym_STAR, + STATE(1203), 1, + sym_use_list, + ACTIONS(2432), 2, + sym_identifier, + sym_super, + [40413] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2570), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40424] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2572), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40435] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2452), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2574), 2, + anon_sym_COMMA, + anon_sym_GT, + [40452] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2576), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40463] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1509), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40474] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2578), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40485] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2580), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40496] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2582), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40507] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2584), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40518] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2566), 1, + anon_sym_LBRACE, + ACTIONS(2586), 1, + anon_sym_SEMI, + STATE(265), 1, + sym_field_declaration_list, + STATE(1235), 1, + sym_type_parameters, + [40537] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2588), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40548] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2590), 1, + anon_sym_RBRACE, + ACTIONS(2592), 1, + anon_sym_COMMA, + STATE(1313), 1, + sym_field_pattern, + [40567] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2594), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40578] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2596), 1, + anon_sym_SEMI, + STATE(282), 1, + sym_declaration_list, + STATE(1233), 1, + sym_type_parameters, + [40597] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2292), 1, + anon_sym_POUND, + ACTIONS(2598), 1, + sym_numeric_literal, + ACTIONS(2600), 1, + sym_identifier, + STATE(1009), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40614] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2602), 1, + anon_sym_RBRACE, + ACTIONS(2604), 1, + anon_sym_COMMA, + STATE(1316), 1, + sym_field_pattern, + [40633] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2452), 1, + anon_sym_COLON_COLON, + STATE(860), 1, + sym_type_arguments, + ACTIONS(2606), 2, + anon_sym_COMMA, + anon_sym_GT, + [40650] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1527), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40661] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2608), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40672] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2444), 1, + anon_sym_nopanic, + ACTIONS(2612), 1, + anon_sym_implicits, + STATE(1376), 1, + sym_nopanic, + ACTIONS(2610), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40689] = 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, + [40700] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1501), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40711] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(932), 1, + anon_sym_RPAREN, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_parameters_repeat1, + ACTIONS(2133), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40728] = 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, + [40739] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(2620), 1, + anon_sym_SEMI, + STATE(524), 1, + sym_declaration_list, + STATE(1327), 1, + sym_type_parameters, + [40758] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2622), 1, + anon_sym_RBRACK, + ACTIONS(2624), 1, + anon_sym_COMMA, + ACTIONS(2626), 1, + anon_sym_PIPE, + STATE(1155), 1, + aux_sym_tuple_pattern_repeat1, + [40774] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2436), 1, + sym_super, + ACTIONS(2628), 1, + sym_identifier, + STATE(857), 1, + sym_type_arguments, + [40790] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(374), 1, + anon_sym_LBRACE, + ACTIONS(2630), 1, + anon_sym_if, + STATE(789), 2, + sym_block, + sym_if_expression, + [40804] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2634), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(2632), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + [40818] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2637), 1, + anon_sym_COMMA, + ACTIONS(2639), 1, + anon_sym_RPAREN, + STATE(1283), 1, + aux_sym_tuple_pattern_repeat1, + [40834] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2632), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [40846] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2641), 1, + anon_sym_COMMA, + ACTIONS(2643), 1, + anon_sym_RPAREN, + STATE(1291), 1, + aux_sym_tuple_pattern_repeat1, + [40862] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2645), 1, + anon_sym_of, + ACTIONS(2647), 1, + anon_sym_EQ, + STATE(1338), 1, + sym_type_parameters, + [40878] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2649), 1, + anon_sym_of, + ACTIONS(2651), 1, + anon_sym_EQ, + STATE(1341), 1, + sym_type_parameters, + [40894] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2653), 1, + anon_sym_COLON_COLON, + ACTIONS(2655), 1, + anon_sym_LPAREN, + ACTIONS(2213), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40908] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2169), 1, + anon_sym_BANG, + ACTIONS(2470), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + [40924] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2657), 1, + anon_sym_of, + ACTIONS(2659), 1, + anon_sym_EQ, + STATE(1372), 1, + sym_type_parameters, + [40940] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, + sym_super, + STATE(848), 1, + sym_type_arguments, + [40956] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2665), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [40972] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2236), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2324), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40984] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2169), 1, + anon_sym_BANG, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2667), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + [41000] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2669), 1, + anon_sym_LBRACE, + STATE(568), 1, + sym_enum_variant_list, + STATE(1345), 1, + sym_type_parameters, + [41016] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_enum_variant_list, + STATE(1371), 1, + sym_type_parameters, + [41032] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2673), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [41048] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, + sym_super, + STATE(853), 1, + sym_type_arguments, + [41064] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2470), 1, + anon_sym_COLON_COLON, + ACTIONS(2675), 1, + anon_sym_BANG, + STATE(864), 1, + sym_type_arguments, + [41080] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, + sym_super, + STATE(848), 1, + sym_type_arguments, + [41096] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(857), 1, + sym_type_arguments, + ACTIONS(2436), 2, + sym_identifier, + sym_super, + [41110] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_SEMI, + ACTIONS(2679), 1, + anon_sym_COLON, + ACTIONS(2681), 1, + anon_sym_EQ, + [41126] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(853), 1, + sym_type_arguments, + ACTIONS(2432), 2, + sym_identifier, + sym_super, + [41140] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, + sym_super, + STATE(853), 1, + sym_type_arguments, + [41156] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2683), 1, + sym_identifier, + ACTIONS(2685), 1, + sym_super, + STATE(857), 1, + sym_type_arguments, + [41172] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2687), 1, + sym_identifier, + STATE(848), 1, + sym_type_arguments, + [41188] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2683), 1, + sym_identifier, + ACTIONS(2685), 1, + sym_super, + STATE(857), 1, + sym_type_arguments, + [41204] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2689), 1, + anon_sym_COMMA, + ACTIONS(2691), 1, + anon_sym_RPAREN, + STATE(1311), 1, + aux_sym_tuple_pattern_repeat1, + [41220] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1844), 1, + anon_sym_GT, + ACTIONS(2693), 1, + anon_sym_COMMA, + ACTIONS(2695), 1, + anon_sym_COLON_COLON, + STATE(1288), 1, + aux_sym_type_parameters_repeat1, + [41236] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1844), 1, + anon_sym_GT, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + ACTIONS(2693), 1, + anon_sym_COMMA, + STATE(1288), 1, + aux_sym_type_parameters_repeat1, + [41252] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2697), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [41268] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2699), 1, + anon_sym_RBRACK, + ACTIONS(2701), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym_tuple_pattern_repeat1, + [41284] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 1, + anon_sym_PIPE, + ACTIONS(2703), 1, + anon_sym_SEMI, + ACTIONS(2705), 1, + anon_sym_COLON, + ACTIONS(2707), 1, + anon_sym_EQ, + [41300] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(848), 1, + sym_type_arguments, + ACTIONS(2432), 2, + sym_identifier, + sym_super, + [41314] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2709), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [41330] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2687), 1, + sym_identifier, + STATE(853), 1, + sym_type_arguments, + [41346] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2711), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [41362] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2713), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41374] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2213), 1, + anon_sym_SEMI, + ACTIONS(2715), 1, + anon_sym_RBRACK, + ACTIONS(2133), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [41388] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2685), 1, + sym_super, + ACTIONS(2718), 1, + sym_identifier, + STATE(857), 1, + sym_type_arguments, + [41404] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2720), 1, + sym_identifier, + STATE(700), 1, + sym_type_arguments, + [41420] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2722), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [41436] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2724), 1, + anon_sym_of, + ACTIONS(2726), 1, + anon_sym_EQ, + STATE(1466), 1, + sym_type_parameters, + [41452] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2720), 1, + sym_identifier, + STATE(703), 1, + sym_type_arguments, + [41468] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2728), 1, + anon_sym_LBRACE, + ACTIONS(2730), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(856), 1, + sym_delim_token_tree, + [41484] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2726), 1, + anon_sym_EQ, + ACTIONS(2734), 1, + anon_sym_SEMI, + STATE(1465), 1, + sym_type_parameters, + [41500] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2736), 1, + anon_sym_COMMA, + ACTIONS(2738), 1, + anon_sym_RPAREN, + STATE(1152), 1, + aux_sym_tuple_pattern_repeat1, + [41516] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2740), 1, + anon_sym_if, + STATE(70), 2, + sym_block, + sym_if_expression, + [41530] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2742), 1, + anon_sym_LBRACE, + ACTIONS(2744), 1, + anon_sym_LBRACK, + ACTIONS(2746), 1, + anon_sym_LPAREN, + STATE(221), 1, + sym_delim_token_tree, + [41546] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2655), 1, + anon_sym_LPAREN, + ACTIONS(2748), 1, + anon_sym_COLON_COLON, + ACTIONS(2213), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [41560] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2750), 1, + sym_identifier, + ACTIONS(2752), 1, + sym_super, + STATE(857), 1, + sym_type_arguments, + [41576] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2742), 1, + anon_sym_LBRACE, + ACTIONS(2744), 1, + anon_sym_LBRACK, + ACTIONS(2746), 1, + anon_sym_LPAREN, + STATE(222), 1, + sym_delim_token_tree, + [41592] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2436), 1, + sym_super, + ACTIONS(2754), 1, + sym_identifier, + STATE(857), 1, + sym_type_arguments, + [41608] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2728), 1, + anon_sym_LBRACE, + ACTIONS(2730), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(852), 1, + sym_delim_token_tree, + [41624] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2756), 1, + anon_sym_LT2, + ACTIONS(2758), 1, + sym_identifier, + ACTIONS(2760), 1, + sym_super, + STATE(644), 1, + sym_type_arguments, + [41640] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2756), 1, + anon_sym_LT2, + ACTIONS(2758), 1, + sym_identifier, + ACTIONS(2760), 1, + sym_super, + STATE(645), 1, + sym_type_arguments, + [41656] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2762), 1, + anon_sym_SEMI, + ACTIONS(2764), 1, + anon_sym_COLON, + ACTIONS(2766), 1, + anon_sym_EQ, + [41672] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2768), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41684] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2671), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_enum_variant_list, + STATE(1438), 1, + sym_type_parameters, + [41700] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2436), 1, + sym_super, + ACTIONS(2718), 1, + sym_identifier, + STATE(857), 1, + sym_type_arguments, + [41716] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2687), 1, + sym_identifier, + STATE(853), 1, + sym_type_arguments, + [41732] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + ACTIONS(2770), 1, + anon_sym_COMMA, + ACTIONS(2772), 1, + anon_sym_GT, + STATE(1260), 1, + aux_sym_type_parameters_repeat1, + [41748] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2774), 1, + anon_sym_if, + STATE(70), 2, + sym_block, + sym_if_expression, + [41762] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2669), 1, + anon_sym_LBRACE, + STATE(536), 1, + sym_enum_variant_list, + STATE(1395), 1, + sym_type_parameters, + [41778] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2695), 1, + anon_sym_COLON_COLON, + ACTIONS(2770), 1, + anon_sym_COMMA, + ACTIONS(2772), 1, + anon_sym_GT, + STATE(1260), 1, + aux_sym_type_parameters_repeat1, + [41794] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2687), 1, + sym_identifier, + STATE(848), 1, + sym_type_arguments, + [41810] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2651), 1, + anon_sym_EQ, + ACTIONS(2776), 1, + anon_sym_SEMI, + STATE(1401), 1, + sym_type_parameters, + [41826] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(784), 1, + anon_sym_LBRACE, + ACTIONS(2778), 1, + anon_sym_if, + STATE(251), 2, + sym_block, + sym_if_expression, + [41840] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2780), 1, + anon_sym_LBRACE, + ACTIONS(2782), 1, + anon_sym_LBRACK, + ACTIONS(2784), 1, + anon_sym_LPAREN, + STATE(1165), 1, + sym_delim_token_tree, + [41856] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2780), 1, + anon_sym_LBRACE, + ACTIONS(2782), 1, + anon_sym_LBRACK, + ACTIONS(2784), 1, + anon_sym_LPAREN, + STATE(1169), 1, + sym_delim_token_tree, + [41872] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2786), 1, + sym_identifier, + ACTIONS(2788), 1, + sym_super, + STATE(857), 1, + sym_type_arguments, + [41888] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2790), 1, + sym_identifier, + ACTIONS(2792), 1, + sym_super, + STATE(853), 1, + sym_type_arguments, + [41904] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2790), 1, + sym_identifier, + ACTIONS(2792), 1, + sym_super, + STATE(848), 1, + sym_type_arguments, + [41920] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(857), 1, + sym_type_arguments, + ACTIONS(2685), 2, + sym_identifier, + sym_super, + [41934] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2685), 1, + sym_super, + ACTIONS(2786), 1, + sym_identifier, + STATE(857), 1, + sym_type_arguments, + [41950] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(853), 1, + sym_type_arguments, + ACTIONS(2663), 2, + sym_identifier, + sym_super, + [41964] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2794), 1, + anon_sym_LPAREN, + STATE(990), 1, + sym_parameters, + STATE(1435), 1, + sym_type_parameters, + [41980] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2236), 1, + anon_sym_SEMI, + ACTIONS(2796), 1, + anon_sym_RBRACK, + ACTIONS(2324), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [41994] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(848), 1, + sym_type_arguments, + ACTIONS(2663), 2, + sym_identifier, + sym_super, + [42008] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2790), 1, + sym_identifier, + STATE(853), 1, + sym_type_arguments, + [42024] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2790), 1, + sym_identifier, + STATE(848), 1, + sym_type_arguments, + [42040] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2799), 1, + anon_sym_COMMA, + ACTIONS(2801), 1, + anon_sym_RPAREN, + STATE(1177), 1, + aux_sym_tuple_pattern_repeat1, + [42056] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2803), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [42072] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2685), 1, + sym_super, + ACTIONS(2805), 1, + sym_identifier, + STATE(857), 1, + sym_type_arguments, + [42088] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2807), 1, + anon_sym_SEMI, + ACTIONS(2809), 1, + anon_sym_COLON, + ACTIONS(2811), 1, + anon_sym_EQ, + [42104] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2813), 1, + sym_identifier, + STATE(853), 1, + sym_type_arguments, + [42120] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2813), 1, + sym_identifier, + STATE(848), 1, + sym_type_arguments, + [42136] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2815), 1, + anon_sym_COMMA, + ACTIONS(2817), 1, + anon_sym_RPAREN, + STATE(1181), 1, + aux_sym_tuple_pattern_repeat1, + [42152] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2819), 1, + sym_identifier, + STATE(431), 1, + sym_type_arguments, + [42168] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2819), 1, + sym_identifier, + STATE(435), 1, + sym_type_arguments, + [42184] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + ACTIONS(2821), 1, + anon_sym_RBRACE, + STATE(1397), 1, + sym_field_pattern, + [42200] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 1, + anon_sym_LBRACE, + ACTIONS(2406), 1, + anon_sym_LBRACK, + ACTIONS(2412), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_delim_token_tree, + [42216] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2074), 1, + anon_sym_LBRACE, + STATE(1290), 1, + sym_use_list, + ACTIONS(2823), 2, + sym_identifier, + sym_super, + [42230] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42242] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 1, + anon_sym_LBRACE, + ACTIONS(2406), 1, + anon_sym_LBRACK, + ACTIONS(2412), 1, + anon_sym_LPAREN, + STATE(81), 1, + sym_delim_token_tree, + [42258] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2215), 1, + anon_sym_COLON_COLON, + ACTIONS(2655), 1, + anon_sym_LPAREN, + ACTIONS(2213), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42272] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2827), 1, + anon_sym_COLON_COLON, + ACTIONS(2561), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42286] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2213), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42298] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2394), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42307] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2829), 1, + anon_sym_SEMI, + STATE(1496), 1, + sym_type_parameters, + [42320] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2831), 1, + anon_sym_in, + ACTIONS(2833), 2, + sym_super, + sym_crate, + [42331] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 3, + anon_sym_POUND, + sym_numeric_literal, + sym_identifier, + [42340] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2821), 1, + anon_sym_RBRACE, + ACTIONS(2835), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_struct_pattern_repeat1, + [42353] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 1, + anon_sym_PIPE, + ACTIONS(2715), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42364] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2837), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [42373] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2839), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [42382] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2841), 1, + anon_sym_RBRACE, + ACTIONS(2843), 1, + anon_sym_COMMA, + STATE(1149), 1, + aux_sym_use_list_repeat1, + [42395] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2846), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_type_arguments, + [42408] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2848), 1, + anon_sym_COMMA, + ACTIONS(2850), 1, + anon_sym_GT, + STATE(1172), 1, + aux_sym_type_arguments_repeat1, + [42421] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1459), 1, + anon_sym_RPAREN, + ACTIONS(2852), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [42434] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2324), 1, + anon_sym_PIPE, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42445] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2159), 1, + anon_sym_fn, + ACTIONS(2854), 1, + anon_sym_type, + STATE(1533), 1, + sym_function, + [42458] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1431), 1, + anon_sym_RBRACK, + ACTIONS(2856), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [42471] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2858), 1, + anon_sym_RBRACE, + ACTIONS(2860), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_field_initializer_list_repeat1, + [42484] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2695), 1, + anon_sym_COLON_COLON, + ACTIONS(2863), 2, + anon_sym_COMMA, + anon_sym_GT, + [42495] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + STATE(445), 1, + sym_field_initializer_list, + [42508] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + ACTIONS(2863), 2, + anon_sym_COMMA, + anon_sym_GT, + [42519] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1932), 1, + anon_sym_RPAREN, + ACTIONS(2867), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_arguments_repeat1, + [42532] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(470), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42541] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2530), 1, + anon_sym_COMMA, + ACTIONS(2532), 1, + anon_sym_RPAREN, + STATE(1308), 1, + aux_sym_parameters_repeat1, + [42554] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(583), 1, + anon_sym_RPAREN, + ACTIONS(2870), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_arguments_repeat1, + [42567] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2872), 1, + anon_sym_SEMI, + STATE(316), 1, + sym_declaration_list, + [42580] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(537), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42589] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2874), 1, + anon_sym_in, + ACTIONS(2876), 2, + sym_super, + sym_crate, + [42600] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2392), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42609] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(485), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42618] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(517), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42627] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2370), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42636] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2318), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42645] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1489), 1, + anon_sym_GT, + ACTIONS(2878), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_type_arguments_repeat1, + [42658] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2880), 1, + anon_sym_RBRACE, + ACTIONS(2882), 1, + anon_sym_COMMA, + STATE(1187), 1, + aux_sym_struct_pattern_repeat1, + [42671] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + ACTIONS(2398), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_type_arguments, + [42684] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2358), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42693] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2348), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42702] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1443), 1, + anon_sym_RPAREN, + ACTIONS(2884), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [42715] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2159), 1, + anon_sym_fn, + ACTIONS(2886), 1, + anon_sym_type, + STATE(1579), 1, + sym_function, + [42728] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2888), 1, + anon_sym_RBRACE, + ACTIONS(2890), 1, + anon_sym_COMMA, + STATE(1289), 1, + aux_sym_enum_variant_list_repeat2, + [42741] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2894), 1, + anon_sym_COLON, + ACTIONS(2892), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [42752] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1455), 1, + anon_sym_RPAREN, + ACTIONS(2896), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [42765] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2695), 1, + anon_sym_COLON_COLON, + ACTIONS(2898), 2, + anon_sym_COMMA, + anon_sym_GT, + [42776] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(2900), 1, + anon_sym_SEMI, + STATE(303), 1, + sym_block, + [42789] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(466), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42798] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(474), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42807] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2902), 1, + anon_sym_RBRACE, + ACTIONS(2904), 1, + anon_sym_COMMA, + STATE(1282), 1, + aux_sym_field_declaration_list_repeat1, + [42820] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2803), 1, + anon_sym_RBRACE, + ACTIONS(2906), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_struct_pattern_repeat1, + [42833] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2362), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42842] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1196), 1, + anon_sym_POUND, + ACTIONS(1198), 2, + anon_sym_pub, + sym_identifier, + [42853] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(673), 1, + anon_sym_RBRACK, + ACTIONS(1824), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [42866] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1972), 1, + anon_sym_RBRACK, + ACTIONS(2908), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [42879] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2913), 1, + anon_sym_COLON, + ACTIONS(2911), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [42890] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2364), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42899] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2915), 1, + anon_sym_RBRACE, + ACTIONS(2917), 1, + anon_sym_COMMA, + STATE(1145), 1, + aux_sym_struct_pattern_repeat1, + [42912] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2336), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42921] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2159), 1, + anon_sym_fn, + ACTIONS(2919), 1, + anon_sym_type, + STATE(1551), 1, + sym_function, + [42934] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2921), 1, + anon_sym_SEMI, + STATE(330), 1, + sym_declaration_list, + [42947] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2501), 1, + anon_sym_RPAREN, + ACTIONS(2923), 1, + anon_sym_COMMA, + STATE(1198), 1, + aux_sym_function_repeat1, + [42960] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2926), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [42969] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2096), 1, + anon_sym_RBRACE, + ACTIONS(2928), 1, + anon_sym_COMMA, + STATE(1149), 1, + aux_sym_use_list_repeat1, + [42982] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2374), 1, + anon_sym_RBRACE, + ACTIONS(2930), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_field_declaration_list_repeat1, + [42995] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2932), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43004] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2934), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43013] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(689), 1, + anon_sym_RBRACK, + ACTIONS(1798), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [43026] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(374), 1, + anon_sym_LBRACE, + ACTIONS(2936), 1, + anon_sym_SEMI, + STATE(532), 1, + sym_block, + [43039] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1771), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_COLON_COLON, + STATE(781), 1, + sym_field_initializer_list, + [43052] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2940), 1, + anon_sym_SEMI, + STATE(283), 1, + sym_declaration_list, + [43065] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1493), 1, + anon_sym_GT, + ACTIONS(2942), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_type_arguments_repeat1, + [43078] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2566), 1, + anon_sym_LBRACE, + ACTIONS(2944), 1, + anon_sym_SEMI, + STATE(301), 1, + sym_field_declaration_list, + [43091] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(489), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43100] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2390), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43109] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2946), 1, + anon_sym_COMMA, + ACTIONS(2948), 1, + anon_sym_GT, + STATE(1208), 1, + aux_sym_type_arguments_repeat1, + [43122] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2950), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43131] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2952), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43140] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(2954), 1, + anon_sym_SEMI, + STATE(491), 1, + sym_declaration_list, + [43153] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2342), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43162] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2956), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43171] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2958), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43180] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2960), 1, + anon_sym_PIPE, + ACTIONS(2962), 1, + anon_sym_EQ_GT, + ACTIONS(2964), 1, + anon_sym_if, + [43193] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2770), 1, + anon_sym_COMMA, + ACTIONS(2772), 1, + anon_sym_GT, + STATE(1260), 1, + aux_sym_type_parameters_repeat1, + [43206] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43215] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2362), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43224] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_SEMI, + STATE(305), 1, + sym_declaration_list, + [43237] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1858), 1, + anon_sym_RPAREN, + ACTIONS(2968), 1, + anon_sym_COMMA, + STATE(1198), 1, + aux_sym_function_repeat1, + [43250] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2133), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43259] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + ACTIONS(2970), 1, + anon_sym_COLON_COLON, + STATE(864), 1, + sym_type_arguments, + [43272] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2972), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_field_initializer_list_repeat1, + [43285] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(2974), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43296] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2978), 1, + anon_sym_COLON, + ACTIONS(2976), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43307] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2980), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43316] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(581), 1, + anon_sym_RPAREN, + ACTIONS(1856), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_arguments_repeat1, + [43329] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(581), 1, + anon_sym_RPAREN, + ACTIONS(1856), 1, + anon_sym_COMMA, + STATE(1163), 1, + aux_sym_arguments_repeat1, + [43342] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + anon_sym_SEMI, + STATE(270), 1, + sym_declaration_list, + [43355] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2322), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43364] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2566), 1, + anon_sym_LBRACE, + ACTIONS(2984), 1, + anon_sym_SEMI, + STATE(273), 1, + sym_field_declaration_list, + [43377] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2988), 1, + anon_sym_COLON, + ACTIONS(2986), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43388] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2544), 1, + sym_identifier, + ACTIONS(2546), 1, + sym_mutable_specifier, + STATE(1397), 1, + sym_field_pattern, + [43401] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2990), 1, + anon_sym_COMMA, + ACTIONS(2992), 1, + anon_sym_RPAREN, + STATE(1224), 1, + aux_sym_function_repeat1, + [43414] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2320), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43423] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2159), 1, + anon_sym_fn, + ACTIONS(2994), 1, + anon_sym_type, + STATE(1472), 1, + sym_function, + [43436] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2324), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43445] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(374), 1, + anon_sym_LBRACE, + ACTIONS(2996), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_block, + [43458] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2328), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43467] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2388), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43476] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2998), 1, + anon_sym_RBRACE, + ACTIONS(3000), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_struct_pattern_repeat1, + [43489] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1521), 1, + anon_sym_LBRACE, + ACTIONS(3003), 1, + anon_sym_COLON_COLON, + STATE(445), 1, + sym_field_initializer_list, + [43502] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_SEMI, + STATE(498), 1, + sym_declaration_list, + [43515] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2380), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43524] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(506), 1, + sym_declaration_list, + [43537] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2376), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43546] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(679), 1, + anon_sym_RBRACK, + ACTIONS(1802), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [43559] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2372), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43568] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, + anon_sym_SEMI, + STATE(278), 1, + sym_declaration_list, + [43581] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + ACTIONS(3011), 2, + anon_sym_COMMA, + anon_sym_GT, + [43592] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2520), 1, + anon_sym_LBRACE, + ACTIONS(3013), 1, + anon_sym_SEMI, + STATE(514), 1, + sym_field_declaration_list, + [43605] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + ACTIONS(2898), 2, + anon_sym_COMMA, + anon_sym_GT, + [43616] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(3015), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43627] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1467), 1, + anon_sym_LBRACE, + ACTIONS(3017), 1, + anon_sym_SEMI, + STATE(322), 1, + sym_block, + [43640] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1846), 1, + anon_sym_GT, + ACTIONS(3019), 1, + anon_sym_COMMA, + STATE(1274), 1, + aux_sym_type_parameters_repeat1, + [43653] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1844), 1, + anon_sym_GT, + ACTIONS(2693), 1, + anon_sym_COMMA, + STATE(1274), 1, + aux_sym_type_parameters_repeat1, + [43666] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1844), 1, + anon_sym_GT, + ACTIONS(2693), 1, + anon_sym_COMMA, + STATE(1288), 1, + aux_sym_type_parameters_repeat1, + [43679] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(3021), 1, + anon_sym_SEMI, + STATE(257), 1, + sym_declaration_list, + [43692] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2332), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43701] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2695), 1, + anon_sym_COLON_COLON, + ACTIONS(3011), 2, + anon_sym_COMMA, + anon_sym_GT, + [43712] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2334), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43721] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(681), 1, + anon_sym_RBRACK, + ACTIONS(3023), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [43734] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2338), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43743] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2276), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, + anon_sym_COMMA, + STATE(1322), 1, + aux_sym_enum_variant_list_repeat2, + [43756] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2344), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43765] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2354), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43774] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3027), 1, + anon_sym_COMMA, + ACTIONS(3030), 1, + anon_sym_GT, + STATE(1271), 1, + aux_sym_type_arguments_repeat1, + [43787] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2352), 1, + anon_sym_RBRACE, + ACTIONS(3032), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_field_declaration_list_repeat1, + [43800] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2356), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43809] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3011), 1, + anon_sym_GT, + ACTIONS(3034), 1, + anon_sym_COMMA, + STATE(1274), 1, + aux_sym_type_parameters_repeat1, + [43822] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(3037), 1, + anon_sym_SEMI, + STATE(1570), 1, + sym_type_parameters, + [43835] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3039), 1, + anon_sym_SEMI, + STATE(521), 1, + sym_declaration_list, + [43848] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(585), 1, + anon_sym_RPAREN, + ACTIONS(3041), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_arguments_repeat1, + [43861] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3043), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43870] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3045), 1, + anon_sym_RBRACE, + ACTIONS(3047), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym_use_list_repeat1, + [43883] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2673), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_struct_pattern_repeat1, + [43896] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3051), 1, + anon_sym_RBRACE, + ACTIONS(3053), 1, + anon_sym_COMMA, + STATE(1323), 1, + aux_sym_field_initializer_list_repeat1, + [43909] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2326), 1, + anon_sym_RBRACE, + ACTIONS(3055), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_field_declaration_list_repeat1, + [43922] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1429), 1, + anon_sym_RPAREN, + ACTIONS(3057), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [43935] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2326), 1, + anon_sym_RBRACE, + ACTIONS(3055), 1, + anon_sym_COMMA, + STATE(1317), 1, + aux_sym_field_declaration_list_repeat1, + [43948] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1832), 1, + anon_sym_COMMA, + ACTIONS(1834), 1, + anon_sym_RPAREN, + STATE(1324), 1, + aux_sym_arguments_repeat1, + [43961] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1850), 1, + anon_sym_GT, + ACTIONS(3059), 1, + anon_sym_COMMA, + STATE(1274), 1, + aux_sym_type_parameters_repeat1, + [43974] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3061), 1, + anon_sym_SEMI, + STATE(564), 1, + sym_declaration_list, + [43987] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1852), 1, + anon_sym_GT, + ACTIONS(3063), 1, + anon_sym_COMMA, + STATE(1274), 1, + aux_sym_type_parameters_repeat1, + [44000] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2270), 1, + anon_sym_RBRACE, + ACTIONS(3065), 1, + anon_sym_COMMA, + STATE(1322), 1, + aux_sym_enum_variant_list_repeat2, + [44013] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3067), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [44022] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(3069), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [44035] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(3071), 1, + anon_sym_SEMI, + STATE(1601), 1, + sym_type_parameters, + [44048] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3075), 1, + anon_sym_COLON, + ACTIONS(3073), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44059] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2665), 1, + anon_sym_RBRACE, + ACTIONS(3077), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_struct_pattern_repeat1, + [44072] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3079), 1, + anon_sym_SEMI, + STATE(501), 1, + sym_declaration_list, + [44085] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2270), 1, + anon_sym_RBRACE, + ACTIONS(3065), 1, + anon_sym_COMMA, + STATE(1325), 1, + aux_sym_enum_variant_list_repeat2, + [44098] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1491), 1, + anon_sym_GT, + ACTIONS(3081), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_type_arguments_repeat1, + [44111] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(936), 1, + anon_sym_RPAREN, + ACTIONS(3083), 1, + anon_sym_COMMA, + STATE(1302), 1, + aux_sym_parameters_repeat1, + [44124] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2272), 1, + anon_sym_RBRACE, + ACTIONS(3085), 1, + anon_sym_COMMA, + STATE(1268), 1, + aux_sym_enum_variant_list_repeat2, + [44137] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2272), 1, + anon_sym_RBRACE, + ACTIONS(3085), 1, + anon_sym_COMMA, + STATE(1322), 1, + aux_sym_enum_variant_list_repeat2, + [44150] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2492), 1, + anon_sym_LBRACE, + ACTIONS(3087), 1, + anon_sym_SEMI, + STATE(260), 1, + sym_declaration_list, + [44163] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2713), 1, + anon_sym_RPAREN, + ACTIONS(3089), 1, + anon_sym_COMMA, + STATE(1302), 1, + aux_sym_parameters_repeat1, + [44176] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(675), 1, + anon_sym_RBRACK, + ACTIONS(1836), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [44189] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2659), 1, + anon_sym_EQ, + STATE(1568), 1, + sym_type_parameters, + [44202] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3092), 1, + anon_sym_RBRACE, + ACTIONS(3094), 1, + anon_sym_COMMA, + STATE(1332), 1, + aux_sym_field_declaration_list_repeat1, + [44215] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3096), 1, + anon_sym_RBRACE, + ACTIONS(3098), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_enum_variant_list_repeat2, + [44228] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3100), 1, + anon_sym_RBRACE, + ACTIONS(3102), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_field_declaration_list_repeat1, + [44241] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(932), 1, + anon_sym_RPAREN, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1302), 1, + aux_sym_parameters_repeat1, + [44254] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1435), 1, + anon_sym_RBRACK, + ACTIONS(3105), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [44267] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1840), 1, + anon_sym_COMMA, + ACTIONS(1842), 1, + anon_sym_RPAREN, + STATE(1231), 1, + aux_sym_arguments_repeat1, + [44280] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1445), 1, + anon_sym_RPAREN, + ACTIONS(3107), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_tuple_pattern_repeat1, + [44293] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3109), 1, + anon_sym_COMMA, + ACTIONS(3111), 1, + anon_sym_GT, + STATE(1297), 1, + aux_sym_type_arguments_repeat1, + [44306] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3113), 1, + anon_sym_RBRACE, + ACTIONS(3115), 1, + anon_sym_COMMA, + STATE(1294), 1, + aux_sym_struct_pattern_repeat1, + [44319] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(932), 1, + anon_sym_RPAREN, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_parameters_repeat1, + [44332] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(2647), 1, + anon_sym_EQ, + STATE(1620), 1, + sym_type_parameters, + [44345] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3117), 1, + anon_sym_RBRACE, + ACTIONS(3119), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_struct_pattern_repeat1, + [44358] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2382), 1, + anon_sym_RBRACE, + ACTIONS(3121), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_field_declaration_list_repeat1, + [44371] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3123), 1, + anon_sym_RBRACE, + ACTIONS(3125), 1, + anon_sym_COMMA, + STATE(1227), 1, + aux_sym_field_initializer_list_repeat1, + [44384] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3129), 1, + anon_sym_COLON, + ACTIONS(3127), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44395] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2360), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44404] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2366), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44413] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3131), 1, + anon_sym_RBRACE, + ACTIONS(3133), 1, + anon_sym_COMMA, + STATE(1322), 1, + aux_sym_enum_variant_list_repeat2, + [44426] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2378), 1, + anon_sym_RBRACE, + ACTIONS(3136), 1, + anon_sym_COMMA, + STATE(1156), 1, + aux_sym_field_initializer_list_repeat1, + [44439] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(587), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_arguments_repeat1, + [44452] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2274), 1, + anon_sym_RBRACE, + ACTIONS(3138), 1, + anon_sym_COMMA, + STATE(1322), 1, + aux_sym_enum_variant_list_repeat2, + [44465] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(587), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, + anon_sym_COMMA, + STATE(1277), 1, + aux_sym_arguments_repeat1, + [44478] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3140), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_declaration_list, + [44491] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2520), 1, + anon_sym_LBRACE, + ACTIONS(3142), 1, + anon_sym_SEMI, + STATE(556), 1, + sym_field_declaration_list, + [44504] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2496), 1, + anon_sym_LT, + ACTIONS(3144), 1, + anon_sym_SEMI, + STATE(1553), 1, + sym_type_parameters, + [44517] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(3146), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_declaration_list, + [44530] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(683), 1, + anon_sym_RBRACK, + ACTIONS(3148), 1, + anon_sym_COMMA, + STATE(1191), 1, + aux_sym_array_expression_repeat1, + [44543] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2374), 1, + anon_sym_RBRACE, + ACTIONS(2930), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_field_declaration_list_repeat1, + [44556] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3150), 1, + anon_sym_COLON_COLON, + ACTIONS(3152), 1, + anon_sym_RPAREN, + [44566] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2663), 2, + sym_identifier, + sym_super, + [44574] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3154), 1, + anon_sym_SEMI, + ACTIONS(3156), 1, + anon_sym_EQ, + [44584] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3152), 1, + anon_sym_RPAREN, + ACTIONS(3158), 1, + anon_sym_COLON_COLON, + [44594] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3160), 1, + anon_sym_BANG, + ACTIONS(3162), 1, + anon_sym_LBRACK, + [44604] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3164), 1, + anon_sym_of, + ACTIONS(3166), 1, + anon_sym_EQ, + [44614] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(3168), 1, + anon_sym_EQ, + [44624] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3170), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44632] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3172), 1, + anon_sym_of, + ACTIONS(3174), 1, + anon_sym_EQ, + [44642] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3176), 1, + anon_sym_BANG, + ACTIONS(3178), 1, + anon_sym_LBRACK, + [44652] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3180), 1, + anon_sym_BANG, + ACTIONS(3182), 1, + anon_sym_LBRACK, + [44662] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3184), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44670] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2669), 1, + anon_sym_LBRACE, + STATE(554), 1, + sym_enum_variant_list, + [44680] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3131), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44688] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3186), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44696] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(3188), 1, + anon_sym_COLON, + [44706] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2823), 1, + sym_super, + ACTIONS(3190), 1, + sym_identifier, + [44716] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2863), 2, + anon_sym_COMMA, + anon_sym_GT, + [44724] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3192), 2, + sym_identifier, + sym_super, + [44732] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3194), 2, + anon_sym_type, + anon_sym_fn, + [44740] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2713), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44748] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(82), 1, + sym_block, + [44758] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3152), 1, + anon_sym_RPAREN, + ACTIONS(3196), 1, + anon_sym_COLON_COLON, + [44768] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3100), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44776] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3198), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44784] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3200), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44792] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2143), 1, + anon_sym_LT2, + STATE(454), 1, + sym_type_arguments, + [44802] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2217), 1, + sym_identifier, + ACTIONS(3202), 1, + anon_sym_LPAREN, + [44812] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3204), 1, + anon_sym_SEMI, + ACTIONS(3206), 1, + anon_sym_EQ, + [44822] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + [44832] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(458), 2, + anon_sym_COMMA, + anon_sym_GT, + [44840] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2137), 1, + anon_sym_BANG, + ACTIONS(3208), 1, + anon_sym_COLON_COLON, + [44850] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2330), 1, + anon_sym_PIPE, + ACTIONS(3188), 1, + anon_sym_COLON, + [44860] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3210), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44868] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3212), 1, + anon_sym_SEMI, + ACTIONS(3214), 1, + anon_sym_EQ, + [44878] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3216), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44886] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1521), 1, + anon_sym_LBRACE, + STATE(445), 1, + sym_field_initializer_list, + [44896] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3218), 1, + anon_sym_SEMI, + ACTIONS(3220), 1, + anon_sym_RBRACK, + [44906] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2671), 1, + anon_sym_LBRACE, + STATE(274), 1, + sym_enum_variant_list, + [44916] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3222), 1, + anon_sym_of, + ACTIONS(3224), 1, + anon_sym_EQ, + [44926] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3158), 1, + anon_sym_COLON_COLON, + ACTIONS(3226), 1, + anon_sym_RPAREN, + [44936] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3150), 1, + anon_sym_COLON_COLON, + ACTIONS(3226), 1, + anon_sym_RPAREN, + [44946] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3228), 1, + anon_sym_COLON_COLON, + ACTIONS(3230), 1, + anon_sym_RPAREN, + [44956] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3232), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [44964] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3196), 1, + anon_sym_COLON_COLON, + ACTIONS(3226), 1, + anon_sym_RPAREN, + [44974] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3234), 1, + anon_sym_SEMI, + ACTIONS(3236), 1, + anon_sym_EQ, + [44984] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(3238), 1, + anon_sym_EQ, + [44994] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3240), 1, + sym_identifier, + ACTIONS(3242), 1, + sym_super, + [45004] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3244), 1, + anon_sym_SEMI, + ACTIONS(3246), 1, + anon_sym_EQ, + [45014] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3248), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45022] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3250), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45030] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3252), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45038] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3030), 2, + anon_sym_COMMA, + anon_sym_GT, + [45046] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3254), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45054] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3256), 2, + sym_identifier, + sym_super, + [45062] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2432), 2, + sym_identifier, + sym_super, + [45070] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3256), 1, + sym_super, + ACTIONS(3258), 1, + sym_identifier, + [45080] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3256), 1, + sym_super, + ACTIONS(3260), 1, + sym_identifier, + [45090] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2661), 1, + sym_identifier, + ACTIONS(2663), 1, + sym_super, + [45100] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3262), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45108] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2655), 1, + anon_sym_LPAREN, + ACTIONS(3264), 1, + anon_sym_COLON_COLON, + [45118] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3266), 1, + anon_sym_SEMI, + ACTIONS(3268), 1, + anon_sym_EQ, + [45128] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2669), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_enum_variant_list, + [45138] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3270), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45146] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2998), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45154] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3011), 2, + anon_sym_COMMA, + anon_sym_GT, + [45162] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3272), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45170] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2841), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45178] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3174), 1, + anon_sym_EQ, + ACTIONS(3274), 1, + anon_sym_SEMI, + [45188] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2254), 1, + anon_sym_BANG, + ACTIONS(2538), 1, + anon_sym_COLON_COLON, + [45198] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45206] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2756), 1, + anon_sym_LT2, + STATE(798), 1, + sym_type_arguments, + [45216] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3276), 1, + sym_numeric_literal, + ACTIONS(3278), 1, + sym_identifier, + [45226] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3280), 1, + anon_sym_COLON_COLON, + ACTIONS(3282), 1, + anon_sym_LPAREN, + [45236] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3284), 1, + sym_identifier, + ACTIONS(3286), 1, + sym_super, + [45246] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(784), 1, + anon_sym_LBRACE, + STATE(248), 1, + sym_block, + [45256] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2687), 1, + sym_identifier, + [45266] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3192), 1, + sym_super, + ACTIONS(3288), 1, + sym_identifier, + [45276] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2823), 1, + sym_super, + ACTIONS(3240), 1, + sym_identifier, + [45286] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2758), 1, + sym_identifier, + ACTIONS(2760), 1, + sym_super, + [45296] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2858), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45304] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(374), 1, + anon_sym_LBRACE, + STATE(769), 1, + sym_block, + [45314] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3290), 1, + anon_sym_LBRACE, + STATE(642), 1, + sym_block, + [45324] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3292), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45332] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(784), 1, + anon_sym_LBRACE, + STATE(255), 1, + sym_block, + [45342] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3294), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45350] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3296), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45358] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3298), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_block, + [45368] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3300), 1, + sym_identifier, + ACTIONS(3302), 1, + sym_super, + [45378] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2720), 1, + sym_identifier, + [45388] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1932), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45396] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3304), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45404] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2687), 1, + sym_identifier, + [45414] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3306), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45422] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2432), 1, + sym_super, + ACTIONS(2819), 1, + sym_identifier, + [45432] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3192), 1, + sym_super, + ACTIONS(3260), 1, + sym_identifier, + [45442] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3242), 1, + sym_super, + ACTIONS(3308), 1, + sym_identifier, + [45452] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2626), 1, + anon_sym_PIPE, + ACTIONS(3310), 1, + anon_sym_COLON, + [45462] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3312), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45470] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3314), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_block, + [45480] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_block, + [45490] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3316), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45498] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2794), 1, + anon_sym_LPAREN, + STATE(973), 1, + sym_parameters, + [45508] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3318), 1, + anon_sym_SEMI, + ACTIONS(3320), 1, + anon_sym_EQ, + [45518] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1956), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45526] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2671), 1, + anon_sym_LBRACE, + STATE(291), 1, + sym_enum_variant_list, + [45536] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2823), 2, + sym_identifier, + sym_super, + [45544] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3192), 1, + sym_super, + ACTIONS(3322), 1, + sym_identifier, + [45554] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3324), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45562] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2892), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45570] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2386), 1, + anon_sym_LT2, + STATE(859), 1, + sym_type_arguments, + [45580] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3256), 1, + sym_super, + ACTIONS(3326), 1, + sym_identifier, + [45590] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2813), 1, + sym_identifier, + [45600] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3242), 1, + sym_super, + ACTIONS(3328), 1, + sym_identifier, + [45610] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1771), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_field_initializer_list, + [45620] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3330), 1, + sym_numeric_literal, + ACTIONS(3332), 1, + sym_identifier, + [45630] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3334), 1, + sym_identifier, + ACTIONS(3336), 1, + sym_super, + [45640] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(374), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_block, + [45650] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3338), 1, + anon_sym_LBRACE, + STATE(227), 1, + sym_block, + [45660] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3228), 1, + anon_sym_COLON_COLON, + ACTIONS(3340), 1, + anon_sym_RPAREN, + [45670] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2410), 1, + anon_sym_COLON_COLON, + ACTIONS(3342), 1, + anon_sym_BANG, + [45680] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3256), 1, + sym_super, + ACTIONS(3344), 1, + sym_identifier, + [45690] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2663), 1, + sym_super, + ACTIONS(2790), 1, + sym_identifier, + [45700] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2790), 1, + sym_identifier, + ACTIONS(2792), 1, + sym_super, + [45710] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2418), 1, + anon_sym_COLON_COLON, + ACTIONS(3346), 1, + anon_sym_BANG, + [45720] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2823), 1, + sym_super, + ACTIONS(3348), 1, + sym_identifier, + [45730] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3344), 1, + sym_identifier, + ACTIONS(3350), 1, + sym_super, + [45740] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2420), 1, + anon_sym_COLON_COLON, + ACTIONS(3346), 1, + anon_sym_BANG, + [45750] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3352), 1, + anon_sym_SEMI, + ACTIONS(3354), 1, + anon_sym_EQ, + [45760] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3356), 2, + anon_sym_COMMA, + anon_sym_GT, + [45768] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3358), 2, + anon_sym_COMMA, + anon_sym_GT, + [45776] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3242), 2, + sym_identifier, + sym_super, + [45784] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3360), 1, + anon_sym_SEMI, + ACTIONS(3362), 1, + anon_sym_EQ, + [45794] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3362), 1, + anon_sym_EQ, + ACTIONS(3364), 1, + anon_sym_of, + [45804] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3242), 1, + sym_super, + ACTIONS(3334), 1, + sym_identifier, + [45814] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3366), 1, + sym_identifier, + [45821] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3368), 1, + sym_identifier, + [45828] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3370), 1, + anon_sym_RBRACK, + [45835] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3372), 1, + anon_sym_DQUOTE, + [45842] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3374), 1, + anon_sym_SEMI, + [45849] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3376), 1, + anon_sym_RBRACK, + [45856] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2422), 1, + anon_sym_COLON_COLON, + [45863] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3378), 1, + anon_sym_RBRACK, + [45870] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3380), 1, + anon_sym_RBRACK, + [45877] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3382), 1, + anon_sym_RBRACK, + [45884] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2902), 1, + anon_sym_RBRACE, + [45891] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2894), 1, + anon_sym_COLON, + [45898] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3384), 1, + sym_identifier, + [45905] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3386), 1, + sym_identifier, + [45912] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3388), 1, + anon_sym_RBRACK, + [45919] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3390), 1, + sym_identifier, + [45926] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3392), 1, + sym_identifier, + [45933] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3394), 1, + sym_identifier, + [45940] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3396), 1, + sym_identifier, + [45947] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3398), 1, + anon_sym_DQUOTE, + [45954] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3400), 1, + anon_sym_SEMI, + [45961] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3402), 1, + sym_identifier, + [45968] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3404), 1, + anon_sym_RBRACK, + [45975] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(689), 1, + anon_sym_RBRACK, + [45982] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3406), 1, + sym_identifier, + [45989] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2888), 1, + anon_sym_RBRACE, + [45996] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1842), 1, + anon_sym_RPAREN, + [46003] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3408), 1, + anon_sym_RBRACE, + [46010] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3410), 1, + anon_sym_SEMI, + [46017] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3412), 1, + anon_sym_RBRACE, + [46024] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(669), 1, + anon_sym_RBRACK, + [46031] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3414), 1, + anon_sym_SEMI, + [46038] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3416), 1, + anon_sym_RBRACK, + [46045] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + [46052] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3420), 1, + anon_sym_DQUOTE, + [46059] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3422), 1, + anon_sym_RBRACK, + [46066] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2532), 1, + anon_sym_RPAREN, + [46073] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3424), 1, + anon_sym_RBRACK, + [46080] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3426), 1, + sym_identifier, + [46087] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3428), 1, + sym_identifier, + [46094] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3430), 1, + sym_identifier, + [46101] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3432), 1, + sym_identifier, + [46108] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3434), 1, + sym_identifier, + [46115] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3436), 1, + anon_sym_EQ_GT, + [46122] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3438), 1, + sym_identifier, + [46129] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2622), 1, + anon_sym_RBRACK, + [46136] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3440), 1, + anon_sym_EQ_GT, + [46143] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3442), 1, + sym_numeric_literal, + [46150] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3444), 1, + anon_sym_COLON_COLON, + [46157] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3446), 1, + anon_sym_SEMI, + [46164] = 2, + ACTIONS(3448), 1, + aux_sym_string_literal_token2, + ACTIONS(3450), 1, + sym_line_comment, + [46171] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2072), 1, + anon_sym_COLON_COLON, + [46178] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3452), 1, + anon_sym_SEMI, + [46185] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3454), 1, + anon_sym_RBRACK, + [46192] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2738), 1, + anon_sym_RPAREN, + [46199] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2234), 1, + sym_identifier, + [46206] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3456), 1, + sym_identifier, + [46213] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3458), 1, + anon_sym_DQUOTE, + [46220] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3123), 1, + anon_sym_RBRACE, + [46227] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2206), 1, + anon_sym_COLON_COLON, + [46234] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3460), 1, + anon_sym_DQUOTE, + [46241] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3462), 1, + anon_sym_SEMI, + [46248] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3464), 1, + anon_sym_EQ_GT, + [46255] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3466), 1, + anon_sym_COLON_COLON, + [46262] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3468), 1, + anon_sym_RBRACE, + [46269] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3470), 1, + anon_sym_SEMI, + [46276] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2880), 1, + anon_sym_RBRACE, + [46283] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3472), 1, + sym_identifier, + [46290] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3474), 1, + sym_identifier, + [46297] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3476), 1, + sym_identifier, + [46304] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3478), 1, + sym_identifier, + [46311] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3480), 1, + sym_identifier, + [46318] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2817), 1, + anon_sym_RPAREN, + [46325] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3482), 1, + sym_identifier, + [46332] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3484), 1, + anon_sym_RBRACK, + [46339] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3486), 1, + anon_sym_SEMI, + [46346] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(679), 1, + anon_sym_RBRACK, + [46353] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2699), 1, + anon_sym_RBRACK, + [46360] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2221), 1, + anon_sym_COLON_COLON, + [46367] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2316), 1, + anon_sym_COLON_COLON, + [46374] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2691), 1, + anon_sym_RPAREN, + [46381] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3488), 1, + sym_identifier, + [46388] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3490), 1, + sym_numeric_literal, + [46395] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3492), 1, + anon_sym_SEMI, + [46402] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2801), 1, + anon_sym_RPAREN, + [46409] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3494), 1, + anon_sym_SEMI, + [46416] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3496), 1, + sym_identifier, + [46423] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3498), 1, + anon_sym_SEMI, + [46430] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2915), 1, + anon_sym_RBRACE, + [46437] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3500), 1, + anon_sym_EQ_GT, + [46444] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3502), 1, + sym_identifier, + [46451] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3504), 1, + anon_sym_RPAREN, + [46458] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3506), 1, + anon_sym_RBRACE, + [46465] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3045), 1, + anon_sym_RBRACE, + [46472] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3508), 1, + anon_sym_COLON, + [46479] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(661), 1, + anon_sym_RBRACK, + [46486] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK, + [46493] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3051), 1, + anon_sym_RBRACE, + [46500] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3512), 1, + anon_sym_LBRACK, + [46507] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3514), 1, + anon_sym_COLON, + [46514] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3224), 1, + anon_sym_EQ, + [46521] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3516), 1, + anon_sym_SEMI, + [46528] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3518), 1, + anon_sym_SEMI, + [46535] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1834), 1, + anon_sym_RPAREN, + [46542] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + [46549] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3522), 1, + anon_sym_SEMI, + [46556] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3524), 1, + anon_sym_COLON, + [46563] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3526), 1, + anon_sym_COLON, + [46570] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3528), 1, + anon_sym_RBRACE, + [46577] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3530), 1, + anon_sym_SEMI, + [46584] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3075), 1, + anon_sym_COLON, + [46591] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3532), 1, + anon_sym_SEMI, + [46598] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3534), 1, + sym_identifier, + [46605] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3536), 1, + anon_sym_SEMI, + [46612] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3538), 1, + ts_builtin_sym_end, + [46619] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + [46626] = 2, + ACTIONS(3450), 1, + sym_line_comment, + ACTIONS(3540), 1, + aux_sym_string_literal_token2, + [46633] = 2, + ACTIONS(3450), 1, + sym_line_comment, + ACTIONS(3542), 1, + aux_sym_string_literal_token2, + [46640] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1994), 1, + anon_sym_COLON_COLON, + [46647] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3544), 1, + sym_identifier, + [46654] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3546), 1, + sym_identifier, + [46661] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + [46668] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3550), 1, + anon_sym_RBRACK, + [46675] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3552), 1, + anon_sym_COLON, + [46682] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3554), 1, + anon_sym_RBRACE, + [46689] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3113), 1, + anon_sym_RBRACE, + [46696] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3556), 1, + anon_sym_SEMI, + [46703] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3558), 1, + sym_identifier, + [46710] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3560), 1, + sym_identifier, + [46717] = 2, + ACTIONS(3450), 1, + sym_line_comment, + ACTIONS(3562), 1, + aux_sym_string_literal_token2, + [46724] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3564), 1, + sym_identifier, + [46731] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3566), 1, + anon_sym_RPAREN, + [46738] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2768), 1, + anon_sym_COLON_COLON, + [46745] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3568), 1, + anon_sym_SEMI, + [46752] = 2, + ACTIONS(3450), 1, + sym_line_comment, + ACTIONS(3570), 1, + aux_sym_string_literal_token2, + [46759] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3572), 1, + sym_identifier, + [46766] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2564), 1, + anon_sym_COLON_COLON, + [46773] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3574), 1, + anon_sym_COLON, + [46780] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2827), 1, + anon_sym_COLON_COLON, + [46787] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3576), 1, + sym_identifier, + [46794] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3578), 1, + sym_identifier, + [46801] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2639), 1, + anon_sym_RPAREN, + [46808] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, + sym_identifier, + [46815] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3580), 1, + anon_sym_COLON, + [46822] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3582), 1, + anon_sym_LBRACK, + [46829] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3584), 1, + anon_sym_LBRACK, + [46836] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3586), 1, + sym_identifier, + [46843] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3092), 1, + anon_sym_RBRACE, + [46850] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2262), 1, + sym_identifier, + [46857] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2643), 1, + anon_sym_RPAREN, + [46864] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3588), 1, + anon_sym_COLON, + [46871] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3096), 1, + anon_sym_RBRACE, + [46878] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3166), 1, + anon_sym_EQ, + [46885] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3117), 1, + anon_sym_RBRACE, + [46892] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3590), 1, + anon_sym_LBRACK, + [46899] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3592), 1, + anon_sym_LBRACK, + [46906] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3594), 1, + anon_sym_LBRACK, + [46913] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3596), 1, + anon_sym_LBRACK, + [46920] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3598), 1, + sym_identifier, + [46927] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3600), 1, + sym_identifier, + [46934] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3602), 1, + sym_identifier, + [46941] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3604), 1, + sym_identifier, + [46948] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3606), 1, + sym_identifier, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(220)] = 0, + [SMALL_STATE(221)] = 70, + [SMALL_STATE(222)] = 140, + [SMALL_STATE(223)] = 210, + [SMALL_STATE(224)] = 280, + [SMALL_STATE(225)] = 350, + [SMALL_STATE(226)] = 420, + [SMALL_STATE(227)] = 490, + [SMALL_STATE(228)] = 560, + [SMALL_STATE(229)] = 686, + [SMALL_STATE(230)] = 799, + [SMALL_STATE(231)] = 922, + [SMALL_STATE(232)] = 1035, + [SMALL_STATE(233)] = 1100, + [SMALL_STATE(234)] = 1213, + [SMALL_STATE(235)] = 1278, + [SMALL_STATE(236)] = 1343, + [SMALL_STATE(237)] = 1466, + [SMALL_STATE(238)] = 1531, + [SMALL_STATE(239)] = 1596, + [SMALL_STATE(240)] = 1709, + [SMALL_STATE(241)] = 1832, + [SMALL_STATE(242)] = 1945, + [SMALL_STATE(243)] = 2010, + [SMALL_STATE(244)] = 2074, + [SMALL_STATE(245)] = 2194, + [SMALL_STATE(246)] = 2258, + [SMALL_STATE(247)] = 2322, + [SMALL_STATE(248)] = 2386, + [SMALL_STATE(249)] = 2450, + [SMALL_STATE(250)] = 2518, + [SMALL_STATE(251)] = 2582, + [SMALL_STATE(252)] = 2646, + [SMALL_STATE(253)] = 2710, + [SMALL_STATE(254)] = 2774, + [SMALL_STATE(255)] = 2842, + [SMALL_STATE(256)] = 2906, + [SMALL_STATE(257)] = 2970, + [SMALL_STATE(258)] = 3033, + [SMALL_STATE(259)] = 3096, + [SMALL_STATE(260)] = 3159, + [SMALL_STATE(261)] = 3222, + [SMALL_STATE(262)] = 3285, + [SMALL_STATE(263)] = 3348, + [SMALL_STATE(264)] = 3411, + [SMALL_STATE(265)] = 3474, + [SMALL_STATE(266)] = 3537, + [SMALL_STATE(267)] = 3600, + [SMALL_STATE(268)] = 3663, + [SMALL_STATE(269)] = 3726, + [SMALL_STATE(270)] = 3789, + [SMALL_STATE(271)] = 3852, + [SMALL_STATE(272)] = 3915, + [SMALL_STATE(273)] = 3978, + [SMALL_STATE(274)] = 4041, + [SMALL_STATE(275)] = 4104, + [SMALL_STATE(276)] = 4167, + [SMALL_STATE(277)] = 4230, + [SMALL_STATE(278)] = 4293, + [SMALL_STATE(279)] = 4356, + [SMALL_STATE(280)] = 4419, + [SMALL_STATE(281)] = 4482, + [SMALL_STATE(282)] = 4545, + [SMALL_STATE(283)] = 4608, + [SMALL_STATE(284)] = 4671, + [SMALL_STATE(285)] = 4734, + [SMALL_STATE(286)] = 4797, + [SMALL_STATE(287)] = 4860, + [SMALL_STATE(288)] = 4923, + [SMALL_STATE(289)] = 4986, + [SMALL_STATE(290)] = 5049, + [SMALL_STATE(291)] = 5112, + [SMALL_STATE(292)] = 5175, + [SMALL_STATE(293)] = 5238, + [SMALL_STATE(294)] = 5301, + [SMALL_STATE(295)] = 5364, + [SMALL_STATE(296)] = 5427, + [SMALL_STATE(297)] = 5490, + [SMALL_STATE(298)] = 5553, + [SMALL_STATE(299)] = 5616, + [SMALL_STATE(300)] = 5679, + [SMALL_STATE(301)] = 5742, + [SMALL_STATE(302)] = 5805, + [SMALL_STATE(303)] = 5868, + [SMALL_STATE(304)] = 5931, + [SMALL_STATE(305)] = 5994, + [SMALL_STATE(306)] = 6057, + [SMALL_STATE(307)] = 6120, + [SMALL_STATE(308)] = 6183, + [SMALL_STATE(309)] = 6246, + [SMALL_STATE(310)] = 6309, + [SMALL_STATE(311)] = 6372, + [SMALL_STATE(312)] = 6435, + [SMALL_STATE(313)] = 6498, + [SMALL_STATE(314)] = 6561, + [SMALL_STATE(315)] = 6624, + [SMALL_STATE(316)] = 6687, + [SMALL_STATE(317)] = 6750, + [SMALL_STATE(318)] = 6813, + [SMALL_STATE(319)] = 6876, + [SMALL_STATE(320)] = 6939, + [SMALL_STATE(321)] = 7002, + [SMALL_STATE(322)] = 7065, + [SMALL_STATE(323)] = 7128, + [SMALL_STATE(324)] = 7191, + [SMALL_STATE(325)] = 7254, + [SMALL_STATE(326)] = 7317, + [SMALL_STATE(327)] = 7380, + [SMALL_STATE(328)] = 7443, + [SMALL_STATE(329)] = 7506, + [SMALL_STATE(330)] = 7569, + [SMALL_STATE(331)] = 7632, + [SMALL_STATE(332)] = 7695, + [SMALL_STATE(333)] = 7758, + [SMALL_STATE(334)] = 7821, + [SMALL_STATE(335)] = 7884, + [SMALL_STATE(336)] = 7947, + [SMALL_STATE(337)] = 8061, + [SMALL_STATE(338)] = 8175, + [SMALL_STATE(339)] = 8289, + [SMALL_STATE(340)] = 8403, + [SMALL_STATE(341)] = 8517, + [SMALL_STATE(342)] = 8630, + [SMALL_STATE(343)] = 8743, + [SMALL_STATE(344)] = 8856, + [SMALL_STATE(345)] = 8969, + [SMALL_STATE(346)] = 9080, + [SMALL_STATE(347)] = 9191, + [SMALL_STATE(348)] = 9302, + [SMALL_STATE(349)] = 9410, + [SMALL_STATE(350)] = 9514, + [SMALL_STATE(351)] = 9618, + [SMALL_STATE(352)] = 9717, + [SMALL_STATE(353)] = 9816, + [SMALL_STATE(354)] = 9915, + [SMALL_STATE(355)] = 10014, + [SMALL_STATE(356)] = 10113, + [SMALL_STATE(357)] = 10212, + [SMALL_STATE(358)] = 10311, + [SMALL_STATE(359)] = 10410, + [SMALL_STATE(360)] = 10506, + [SMALL_STATE(361)] = 10602, + [SMALL_STATE(362)] = 10698, + [SMALL_STATE(363)] = 10794, + [SMALL_STATE(364)] = 10890, + [SMALL_STATE(365)] = 10986, + [SMALL_STATE(366)] = 11082, + [SMALL_STATE(367)] = 11178, + [SMALL_STATE(368)] = 11274, + [SMALL_STATE(369)] = 11370, + [SMALL_STATE(370)] = 11466, + [SMALL_STATE(371)] = 11562, + [SMALL_STATE(372)] = 11658, + [SMALL_STATE(373)] = 11754, + [SMALL_STATE(374)] = 11850, + [SMALL_STATE(375)] = 11946, + [SMALL_STATE(376)] = 12039, + [SMALL_STATE(377)] = 12132, + [SMALL_STATE(378)] = 12225, + [SMALL_STATE(379)] = 12318, + [SMALL_STATE(380)] = 12411, + [SMALL_STATE(381)] = 12504, + [SMALL_STATE(382)] = 12597, + [SMALL_STATE(383)] = 12654, + [SMALL_STATE(384)] = 12747, + [SMALL_STATE(385)] = 12840, + [SMALL_STATE(386)] = 12933, + [SMALL_STATE(387)] = 13026, + [SMALL_STATE(388)] = 13119, + [SMALL_STATE(389)] = 13212, + [SMALL_STATE(390)] = 13305, + [SMALL_STATE(391)] = 13398, + [SMALL_STATE(392)] = 13491, + [SMALL_STATE(393)] = 13584, + [SMALL_STATE(394)] = 13674, + [SMALL_STATE(395)] = 13764, + [SMALL_STATE(396)] = 13854, + [SMALL_STATE(397)] = 13944, + [SMALL_STATE(398)] = 14034, + [SMALL_STATE(399)] = 14124, + [SMALL_STATE(400)] = 14211, + [SMALL_STATE(401)] = 14298, + [SMALL_STATE(402)] = 14385, + [SMALL_STATE(403)] = 14472, + [SMALL_STATE(404)] = 14523, + [SMALL_STATE(405)] = 14571, + [SMALL_STATE(406)] = 14616, + [SMALL_STATE(407)] = 14661, + [SMALL_STATE(408)] = 14706, + [SMALL_STATE(409)] = 14751, + [SMALL_STATE(410)] = 14796, + [SMALL_STATE(411)] = 14841, + [SMALL_STATE(412)] = 14894, + [SMALL_STATE(413)] = 14939, + [SMALL_STATE(414)] = 14985, + [SMALL_STATE(415)] = 15031, + [SMALL_STATE(416)] = 15079, + [SMALL_STATE(417)] = 15125, + [SMALL_STATE(418)] = 15171, + [SMALL_STATE(419)] = 15214, + [SMALL_STATE(420)] = 15267, + [SMALL_STATE(421)] = 15340, + [SMALL_STATE(422)] = 15413, + [SMALL_STATE(423)] = 15456, + [SMALL_STATE(424)] = 15509, + [SMALL_STATE(425)] = 15552, + [SMALL_STATE(426)] = 15595, + [SMALL_STATE(427)] = 15648, + [SMALL_STATE(428)] = 15701, + [SMALL_STATE(429)] = 15748, + [SMALL_STATE(430)] = 15793, + [SMALL_STATE(431)] = 15836, + [SMALL_STATE(432)] = 15881, + [SMALL_STATE(433)] = 15954, + [SMALL_STATE(434)] = 16007, + [SMALL_STATE(435)] = 16080, + [SMALL_STATE(436)] = 16125, + [SMALL_STATE(437)] = 16172, + [SMALL_STATE(438)] = 16230, + [SMALL_STATE(439)] = 16272, + [SMALL_STATE(440)] = 16314, + [SMALL_STATE(441)] = 16356, + [SMALL_STATE(442)] = 16398, + [SMALL_STATE(443)] = 16440, + [SMALL_STATE(444)] = 16482, + [SMALL_STATE(445)] = 16524, + [SMALL_STATE(446)] = 16566, + [SMALL_STATE(447)] = 16608, + [SMALL_STATE(448)] = 16650, + [SMALL_STATE(449)] = 16692, + [SMALL_STATE(450)] = 16734, + [SMALL_STATE(451)] = 16776, + [SMALL_STATE(452)] = 16818, + [SMALL_STATE(453)] = 16860, + [SMALL_STATE(454)] = 16902, + [SMALL_STATE(455)] = 16944, + [SMALL_STATE(456)] = 16986, + [SMALL_STATE(457)] = 17058, + [SMALL_STATE(458)] = 17100, + [SMALL_STATE(459)] = 17172, + [SMALL_STATE(460)] = 17214, + [SMALL_STATE(461)] = 17270, + [SMALL_STATE(462)] = 17340, + [SMALL_STATE(463)] = 17382, + [SMALL_STATE(464)] = 17454, + [SMALL_STATE(465)] = 17496, + [SMALL_STATE(466)] = 17538, + [SMALL_STATE(467)] = 17580, + [SMALL_STATE(468)] = 17622, + [SMALL_STATE(469)] = 17686, + [SMALL_STATE(470)] = 17728, + [SMALL_STATE(471)] = 17782, + [SMALL_STATE(472)] = 17824, + [SMALL_STATE(473)] = 17868, + [SMALL_STATE(474)] = 17928, + [SMALL_STATE(475)] = 17970, + [SMALL_STATE(476)] = 18012, + [SMALL_STATE(477)] = 18054, + [SMALL_STATE(478)] = 18096, + [SMALL_STATE(479)] = 18138, + [SMALL_STATE(480)] = 18200, + [SMALL_STATE(481)] = 18242, + [SMALL_STATE(482)] = 18284, + [SMALL_STATE(483)] = 18356, + [SMALL_STATE(484)] = 18424, + [SMALL_STATE(485)] = 18466, + [SMALL_STATE(486)] = 18508, + [SMALL_STATE(487)] = 18549, + [SMALL_STATE(488)] = 18590, + [SMALL_STATE(489)] = 18631, + [SMALL_STATE(490)] = 18672, + [SMALL_STATE(491)] = 18721, + [SMALL_STATE(492)] = 18762, + [SMALL_STATE(493)] = 18803, + [SMALL_STATE(494)] = 18844, + [SMALL_STATE(495)] = 18885, + [SMALL_STATE(496)] = 18964, + [SMALL_STATE(497)] = 19005, + [SMALL_STATE(498)] = 19046, + [SMALL_STATE(499)] = 19087, + [SMALL_STATE(500)] = 19128, + [SMALL_STATE(501)] = 19169, + [SMALL_STATE(502)] = 19210, + [SMALL_STATE(503)] = 19251, + [SMALL_STATE(504)] = 19292, + [SMALL_STATE(505)] = 19333, + [SMALL_STATE(506)] = 19374, + [SMALL_STATE(507)] = 19415, + [SMALL_STATE(508)] = 19456, + [SMALL_STATE(509)] = 19497, + [SMALL_STATE(510)] = 19538, + [SMALL_STATE(511)] = 19579, + [SMALL_STATE(512)] = 19620, + [SMALL_STATE(513)] = 19661, + [SMALL_STATE(514)] = 19702, + [SMALL_STATE(515)] = 19743, + [SMALL_STATE(516)] = 19784, + [SMALL_STATE(517)] = 19825, + [SMALL_STATE(518)] = 19866, + [SMALL_STATE(519)] = 19907, + [SMALL_STATE(520)] = 19948, + [SMALL_STATE(521)] = 19989, + [SMALL_STATE(522)] = 20030, + [SMALL_STATE(523)] = 20071, + [SMALL_STATE(524)] = 20116, + [SMALL_STATE(525)] = 20157, + [SMALL_STATE(526)] = 20198, + [SMALL_STATE(527)] = 20239, + [SMALL_STATE(528)] = 20280, + [SMALL_STATE(529)] = 20321, + [SMALL_STATE(530)] = 20362, + [SMALL_STATE(531)] = 20403, + [SMALL_STATE(532)] = 20444, + [SMALL_STATE(533)] = 20485, + [SMALL_STATE(534)] = 20526, + [SMALL_STATE(535)] = 20605, + [SMALL_STATE(536)] = 20646, + [SMALL_STATE(537)] = 20687, + [SMALL_STATE(538)] = 20728, + [SMALL_STATE(539)] = 20769, + [SMALL_STATE(540)] = 20810, + [SMALL_STATE(541)] = 20851, + [SMALL_STATE(542)] = 20892, + [SMALL_STATE(543)] = 20933, + [SMALL_STATE(544)] = 21012, + [SMALL_STATE(545)] = 21053, + [SMALL_STATE(546)] = 21094, + [SMALL_STATE(547)] = 21135, + [SMALL_STATE(548)] = 21214, + [SMALL_STATE(549)] = 21255, + [SMALL_STATE(550)] = 21296, + [SMALL_STATE(551)] = 21337, + [SMALL_STATE(552)] = 21378, + [SMALL_STATE(553)] = 21419, + [SMALL_STATE(554)] = 21460, + [SMALL_STATE(555)] = 21501, + [SMALL_STATE(556)] = 21542, + [SMALL_STATE(557)] = 21583, + [SMALL_STATE(558)] = 21624, + [SMALL_STATE(559)] = 21665, + [SMALL_STATE(560)] = 21706, + [SMALL_STATE(561)] = 21747, + [SMALL_STATE(562)] = 21788, + [SMALL_STATE(563)] = 21829, + [SMALL_STATE(564)] = 21870, + [SMALL_STATE(565)] = 21911, + [SMALL_STATE(566)] = 21952, + [SMALL_STATE(567)] = 21993, + [SMALL_STATE(568)] = 22034, + [SMALL_STATE(569)] = 22075, + [SMALL_STATE(570)] = 22116, + [SMALL_STATE(571)] = 22182, + [SMALL_STATE(572)] = 22224, + [SMALL_STATE(573)] = 22300, + [SMALL_STATE(574)] = 22342, + [SMALL_STATE(575)] = 22418, + [SMALL_STATE(576)] = 22484, + [SMALL_STATE(577)] = 22526, + [SMALL_STATE(578)] = 22602, + [SMALL_STATE(579)] = 22678, + [SMALL_STATE(580)] = 22724, + [SMALL_STATE(581)] = 22800, + [SMALL_STATE(582)] = 22866, + [SMALL_STATE(583)] = 22932, + [SMALL_STATE(584)] = 22998, + [SMALL_STATE(585)] = 23064, + [SMALL_STATE(586)] = 23130, + [SMALL_STATE(587)] = 23196, + [SMALL_STATE(588)] = 23272, + [SMALL_STATE(589)] = 23314, + [SMALL_STATE(590)] = 23380, + [SMALL_STATE(591)] = 23446, + [SMALL_STATE(592)] = 23509, + [SMALL_STATE(593)] = 23552, + [SMALL_STATE(594)] = 23593, + [SMALL_STATE(595)] = 23656, + [SMALL_STATE(596)] = 23699, + [SMALL_STATE(597)] = 23762, + [SMALL_STATE(598)] = 23825, + [SMALL_STATE(599)] = 23898, + [SMALL_STATE(600)] = 23961, + [SMALL_STATE(601)] = 24024, + [SMALL_STATE(602)] = 24087, + [SMALL_STATE(603)] = 24160, + [SMALL_STATE(604)] = 24223, + [SMALL_STATE(605)] = 24296, + [SMALL_STATE(606)] = 24359, + [SMALL_STATE(607)] = 24422, + [SMALL_STATE(608)] = 24485, + [SMALL_STATE(609)] = 24526, + [SMALL_STATE(610)] = 24589, + [SMALL_STATE(611)] = 24652, + [SMALL_STATE(612)] = 24723, + [SMALL_STATE(613)] = 24786, + [SMALL_STATE(614)] = 24829, + [SMALL_STATE(615)] = 24892, + [SMALL_STATE(616)] = 24931, + [SMALL_STATE(617)] = 24994, + [SMALL_STATE(618)] = 25033, + [SMALL_STATE(619)] = 25096, + [SMALL_STATE(620)] = 25167, + [SMALL_STATE(621)] = 25238, + [SMALL_STATE(622)] = 25301, + [SMALL_STATE(623)] = 25344, + [SMALL_STATE(624)] = 25417, + [SMALL_STATE(625)] = 25490, + [SMALL_STATE(626)] = 25563, + [SMALL_STATE(627)] = 25636, + [SMALL_STATE(628)] = 25707, + [SMALL_STATE(629)] = 25770, + [SMALL_STATE(630)] = 25841, + [SMALL_STATE(631)] = 25904, + [SMALL_STATE(632)] = 25967, + [SMALL_STATE(633)] = 26030, + [SMALL_STATE(634)] = 26101, + [SMALL_STATE(635)] = 26174, + [SMALL_STATE(636)] = 26247, + [SMALL_STATE(637)] = 26320, + [SMALL_STATE(638)] = 26383, + [SMALL_STATE(639)] = 26446, + [SMALL_STATE(640)] = 26519, + [SMALL_STATE(641)] = 26592, + [SMALL_STATE(642)] = 26665, + [SMALL_STATE(643)] = 26708, + [SMALL_STATE(644)] = 26781, + [SMALL_STATE(645)] = 26822, + [SMALL_STATE(646)] = 26863, + [SMALL_STATE(647)] = 26926, + [SMALL_STATE(648)] = 26989, + [SMALL_STATE(649)] = 27052, + [SMALL_STATE(650)] = 27115, + [SMALL_STATE(651)] = 27188, + [SMALL_STATE(652)] = 27261, + [SMALL_STATE(653)] = 27334, + [SMALL_STATE(654)] = 27397, + [SMALL_STATE(655)] = 27460, + [SMALL_STATE(656)] = 27533, + [SMALL_STATE(657)] = 27606, + [SMALL_STATE(658)] = 27679, + [SMALL_STATE(659)] = 27750, + [SMALL_STATE(660)] = 27821, + [SMALL_STATE(661)] = 27884, + [SMALL_STATE(662)] = 27955, + [SMALL_STATE(663)] = 27994, + [SMALL_STATE(664)] = 28033, + [SMALL_STATE(665)] = 28096, + [SMALL_STATE(666)] = 28135, + [SMALL_STATE(667)] = 28198, + [SMALL_STATE(668)] = 28261, + [SMALL_STATE(669)] = 28300, + [SMALL_STATE(670)] = 28363, + [SMALL_STATE(671)] = 28402, + [SMALL_STATE(672)] = 28441, + [SMALL_STATE(673)] = 28514, + [SMALL_STATE(674)] = 28587, + [SMALL_STATE(675)] = 28660, + [SMALL_STATE(676)] = 28733, + [SMALL_STATE(677)] = 28796, + [SMALL_STATE(678)] = 28867, + [SMALL_STATE(679)] = 28930, + [SMALL_STATE(680)] = 29003, + [SMALL_STATE(681)] = 29076, + [SMALL_STATE(682)] = 29149, + [SMALL_STATE(683)] = 29212, + [SMALL_STATE(684)] = 29251, + [SMALL_STATE(685)] = 29324, + [SMALL_STATE(686)] = 29363, + [SMALL_STATE(687)] = 29436, + [SMALL_STATE(688)] = 29499, + [SMALL_STATE(689)] = 29562, + [SMALL_STATE(690)] = 29601, + [SMALL_STATE(691)] = 29664, + [SMALL_STATE(692)] = 29727, + [SMALL_STATE(693)] = 29766, + [SMALL_STATE(694)] = 29826, + [SMALL_STATE(695)] = 29896, + [SMALL_STATE(696)] = 29934, + [SMALL_STATE(697)] = 29984, + [SMALL_STATE(698)] = 30032, + [SMALL_STATE(699)] = 30100, + [SMALL_STATE(700)] = 30138, + [SMALL_STATE(701)] = 30178, + [SMALL_STATE(702)] = 30234, + [SMALL_STATE(703)] = 30304, + [SMALL_STATE(704)] = 30344, + [SMALL_STATE(705)] = 30384, + [SMALL_STATE(706)] = 30432, + [SMALL_STATE(707)] = 30502, + [SMALL_STATE(708)] = 30572, + [SMALL_STATE(709)] = 30630, + [SMALL_STATE(710)] = 30694, + [SMALL_STATE(711)] = 30760, + [SMALL_STATE(712)] = 30812, + [SMALL_STATE(713)] = 30850, + [SMALL_STATE(714)] = 30918, + [SMALL_STATE(715)] = 30956, + [SMALL_STATE(716)] = 30994, + [SMALL_STATE(717)] = 31064, + [SMALL_STATE(718)] = 31132, + [SMALL_STATE(719)] = 31170, + [SMALL_STATE(720)] = 31238, + [SMALL_STATE(721)] = 31308, + [SMALL_STATE(722)] = 31378, + [SMALL_STATE(723)] = 31448, + [SMALL_STATE(724)] = 31486, + [SMALL_STATE(725)] = 31556, + [SMALL_STATE(726)] = 31626, + [SMALL_STATE(727)] = 31696, + [SMALL_STATE(728)] = 31766, + [SMALL_STATE(729)] = 31836, + [SMALL_STATE(730)] = 31874, + [SMALL_STATE(731)] = 31944, + [SMALL_STATE(732)] = 31998, + [SMALL_STATE(733)] = 32068, + [SMALL_STATE(734)] = 32138, + [SMALL_STATE(735)] = 32208, + [SMALL_STATE(736)] = 32278, + [SMALL_STATE(737)] = 32348, + [SMALL_STATE(738)] = 32418, + [SMALL_STATE(739)] = 32488, + [SMALL_STATE(740)] = 32558, + [SMALL_STATE(741)] = 32628, + [SMALL_STATE(742)] = 32668, + [SMALL_STATE(743)] = 32738, + [SMALL_STATE(744)] = 32786, + [SMALL_STATE(745)] = 32824, + [SMALL_STATE(746)] = 32892, + [SMALL_STATE(747)] = 32944, + [SMALL_STATE(748)] = 33014, + [SMALL_STATE(749)] = 33084, + [SMALL_STATE(750)] = 33154, + [SMALL_STATE(751)] = 33220, + [SMALL_STATE(752)] = 33284, + [SMALL_STATE(753)] = 33342, + [SMALL_STATE(754)] = 33396, + [SMALL_STATE(755)] = 33452, + [SMALL_STATE(756)] = 33520, + [SMALL_STATE(757)] = 33570, + [SMALL_STATE(758)] = 33630, + [SMALL_STATE(759)] = 33698, + [SMALL_STATE(760)] = 33768, + [SMALL_STATE(761)] = 33838, + [SMALL_STATE(762)] = 33906, + [SMALL_STATE(763)] = 33976, + [SMALL_STATE(764)] = 34024, + [SMALL_STATE(765)] = 34094, + [SMALL_STATE(766)] = 34134, + [SMALL_STATE(767)] = 34171, + [SMALL_STATE(768)] = 34208, + [SMALL_STATE(769)] = 34245, + [SMALL_STATE(770)] = 34282, + [SMALL_STATE(771)] = 34319, + [SMALL_STATE(772)] = 34356, + [SMALL_STATE(773)] = 34393, + [SMALL_STATE(774)] = 34430, + [SMALL_STATE(775)] = 34467, + [SMALL_STATE(776)] = 34504, + [SMALL_STATE(777)] = 34541, + [SMALL_STATE(778)] = 34578, + [SMALL_STATE(779)] = 34615, + [SMALL_STATE(780)] = 34652, + [SMALL_STATE(781)] = 34689, + [SMALL_STATE(782)] = 34726, + [SMALL_STATE(783)] = 34763, + [SMALL_STATE(784)] = 34818, + [SMALL_STATE(785)] = 34855, + [SMALL_STATE(786)] = 34892, + [SMALL_STATE(787)] = 34929, + [SMALL_STATE(788)] = 34966, + [SMALL_STATE(789)] = 35003, + [SMALL_STATE(790)] = 35040, + [SMALL_STATE(791)] = 35077, + [SMALL_STATE(792)] = 35114, + [SMALL_STATE(793)] = 35151, + [SMALL_STATE(794)] = 35188, + [SMALL_STATE(795)] = 35225, + [SMALL_STATE(796)] = 35262, + [SMALL_STATE(797)] = 35299, + [SMALL_STATE(798)] = 35336, + [SMALL_STATE(799)] = 35373, + [SMALL_STATE(800)] = 35410, + [SMALL_STATE(801)] = 35447, + [SMALL_STATE(802)] = 35484, + [SMALL_STATE(803)] = 35521, + [SMALL_STATE(804)] = 35558, + [SMALL_STATE(805)] = 35595, + [SMALL_STATE(806)] = 35632, + [SMALL_STATE(807)] = 35669, + [SMALL_STATE(808)] = 35706, + [SMALL_STATE(809)] = 35743, + [SMALL_STATE(810)] = 35780, + [SMALL_STATE(811)] = 35817, + [SMALL_STATE(812)] = 35854, + [SMALL_STATE(813)] = 35906, + [SMALL_STATE(814)] = 35958, + [SMALL_STATE(815)] = 36007, + [SMALL_STATE(816)] = 36056, + [SMALL_STATE(817)] = 36105, + [SMALL_STATE(818)] = 36154, + [SMALL_STATE(819)] = 36203, + [SMALL_STATE(820)] = 36240, + [SMALL_STATE(821)] = 36271, + [SMALL_STATE(822)] = 36313, + [SMALL_STATE(823)] = 36352, + [SMALL_STATE(824)] = 36391, + [SMALL_STATE(825)] = 36430, + [SMALL_STATE(826)] = 36469, + [SMALL_STATE(827)] = 36508, + [SMALL_STATE(828)] = 36547, + [SMALL_STATE(829)] = 36586, + [SMALL_STATE(830)] = 36625, + [SMALL_STATE(831)] = 36664, + [SMALL_STATE(832)] = 36703, + [SMALL_STATE(833)] = 36742, + [SMALL_STATE(834)] = 36778, + [SMALL_STATE(835)] = 36814, + [SMALL_STATE(836)] = 36840, + [SMALL_STATE(837)] = 36866, + [SMALL_STATE(838)] = 36892, + [SMALL_STATE(839)] = 36918, + [SMALL_STATE(840)] = 36952, + [SMALL_STATE(841)] = 36975, + [SMALL_STATE(842)] = 36998, + [SMALL_STATE(843)] = 37021, + [SMALL_STATE(844)] = 37042, + [SMALL_STATE(845)] = 37063, + [SMALL_STATE(846)] = 37084, + [SMALL_STATE(847)] = 37105, + [SMALL_STATE(848)] = 37128, + [SMALL_STATE(849)] = 37146, + [SMALL_STATE(850)] = 37164, + [SMALL_STATE(851)] = 37204, + [SMALL_STATE(852)] = 37222, + [SMALL_STATE(853)] = 37240, + [SMALL_STATE(854)] = 37258, + [SMALL_STATE(855)] = 37286, + [SMALL_STATE(856)] = 37326, + [SMALL_STATE(857)] = 37344, + [SMALL_STATE(858)] = 37362, + [SMALL_STATE(859)] = 37383, + [SMALL_STATE(860)] = 37400, + [SMALL_STATE(861)] = 37417, + [SMALL_STATE(862)] = 37438, + [SMALL_STATE(863)] = 37459, + [SMALL_STATE(864)] = 37478, + [SMALL_STATE(865)] = 37495, + [SMALL_STATE(866)] = 37516, + [SMALL_STATE(867)] = 37535, + [SMALL_STATE(868)] = 37554, + [SMALL_STATE(869)] = 37571, + [SMALL_STATE(870)] = 37590, + [SMALL_STATE(871)] = 37615, + [SMALL_STATE(872)] = 37631, + [SMALL_STATE(873)] = 37663, + [SMALL_STATE(874)] = 37679, + [SMALL_STATE(875)] = 37695, + [SMALL_STATE(876)] = 37711, + [SMALL_STATE(877)] = 37743, + [SMALL_STATE(878)] = 37775, + [SMALL_STATE(879)] = 37791, + [SMALL_STATE(880)] = 37815, + [SMALL_STATE(881)] = 37831, + [SMALL_STATE(882)] = 37847, + [SMALL_STATE(883)] = 37863, + [SMALL_STATE(884)] = 37879, + [SMALL_STATE(885)] = 37895, + [SMALL_STATE(886)] = 37911, + [SMALL_STATE(887)] = 37931, + [SMALL_STATE(888)] = 37963, + [SMALL_STATE(889)] = 37992, + [SMALL_STATE(890)] = 38021, + [SMALL_STATE(891)] = 38050, + [SMALL_STATE(892)] = 38079, + [SMALL_STATE(893)] = 38106, + [SMALL_STATE(894)] = 38135, + [SMALL_STATE(895)] = 38164, + [SMALL_STATE(896)] = 38191, + [SMALL_STATE(897)] = 38220, + [SMALL_STATE(898)] = 38243, + [SMALL_STATE(899)] = 38272, + [SMALL_STATE(900)] = 38287, + [SMALL_STATE(901)] = 38316, + [SMALL_STATE(902)] = 38343, + [SMALL_STATE(903)] = 38358, + [SMALL_STATE(904)] = 38377, + [SMALL_STATE(905)] = 38392, + [SMALL_STATE(906)] = 38406, + [SMALL_STATE(907)] = 38420, + [SMALL_STATE(908)] = 38438, + [SMALL_STATE(909)] = 38452, + [SMALL_STATE(910)] = 38466, + [SMALL_STATE(911)] = 38492, + [SMALL_STATE(912)] = 38506, + [SMALL_STATE(913)] = 38520, + [SMALL_STATE(914)] = 38534, + [SMALL_STATE(915)] = 38548, + [SMALL_STATE(916)] = 38562, + [SMALL_STATE(917)] = 38576, + [SMALL_STATE(918)] = 38602, + [SMALL_STATE(919)] = 38620, + [SMALL_STATE(920)] = 38638, + [SMALL_STATE(921)] = 38652, + [SMALL_STATE(922)] = 38666, + [SMALL_STATE(923)] = 38684, + [SMALL_STATE(924)] = 38708, + [SMALL_STATE(925)] = 38722, + [SMALL_STATE(926)] = 38748, + [SMALL_STATE(927)] = 38774, + [SMALL_STATE(928)] = 38800, + [SMALL_STATE(929)] = 38826, + [SMALL_STATE(930)] = 38840, + [SMALL_STATE(931)] = 38854, + [SMALL_STATE(932)] = 38868, + [SMALL_STATE(933)] = 38882, + [SMALL_STATE(934)] = 38896, + [SMALL_STATE(935)] = 38910, + [SMALL_STATE(936)] = 38924, + [SMALL_STATE(937)] = 38938, + [SMALL_STATE(938)] = 38952, + [SMALL_STATE(939)] = 38976, + [SMALL_STATE(940)] = 38990, + [SMALL_STATE(941)] = 39004, + [SMALL_STATE(942)] = 39030, + [SMALL_STATE(943)] = 39056, + [SMALL_STATE(944)] = 39070, + [SMALL_STATE(945)] = 39094, + [SMALL_STATE(946)] = 39108, + [SMALL_STATE(947)] = 39134, + [SMALL_STATE(948)] = 39160, + [SMALL_STATE(949)] = 39182, + [SMALL_STATE(950)] = 39196, + [SMALL_STATE(951)] = 39210, + [SMALL_STATE(952)] = 39224, + [SMALL_STATE(953)] = 39238, + [SMALL_STATE(954)] = 39262, + [SMALL_STATE(955)] = 39281, + [SMALL_STATE(956)] = 39304, + [SMALL_STATE(957)] = 39325, + [SMALL_STATE(958)] = 39346, + [SMALL_STATE(959)] = 39371, + [SMALL_STATE(960)] = 39396, + [SMALL_STATE(961)] = 39421, + [SMALL_STATE(962)] = 39446, + [SMALL_STATE(963)] = 39467, + [SMALL_STATE(964)] = 39490, + [SMALL_STATE(965)] = 39513, + [SMALL_STATE(966)] = 39534, + [SMALL_STATE(967)] = 39557, + [SMALL_STATE(968)] = 39580, + [SMALL_STATE(969)] = 39603, + [SMALL_STATE(970)] = 39626, + [SMALL_STATE(971)] = 39638, + [SMALL_STATE(972)] = 39650, + [SMALL_STATE(973)] = 39666, + [SMALL_STATE(974)] = 39686, + [SMALL_STATE(975)] = 39706, + [SMALL_STATE(976)] = 39728, + [SMALL_STATE(977)] = 39750, + [SMALL_STATE(978)] = 39770, + [SMALL_STATE(979)] = 39788, + [SMALL_STATE(980)] = 39800, + [SMALL_STATE(981)] = 39820, + [SMALL_STATE(982)] = 39838, + [SMALL_STATE(983)] = 39858, + [SMALL_STATE(984)] = 39880, + [SMALL_STATE(985)] = 39900, + [SMALL_STATE(986)] = 39920, + [SMALL_STATE(987)] = 39940, + [SMALL_STATE(988)] = 39958, + [SMALL_STATE(989)] = 39978, + [SMALL_STATE(990)] = 39990, + [SMALL_STATE(991)] = 40010, + [SMALL_STATE(992)] = 40027, + [SMALL_STATE(993)] = 40046, + [SMALL_STATE(994)] = 40063, + [SMALL_STATE(995)] = 40078, + [SMALL_STATE(996)] = 40093, + [SMALL_STATE(997)] = 40104, + [SMALL_STATE(998)] = 40121, + [SMALL_STATE(999)] = 40136, + [SMALL_STATE(1000)] = 40147, + [SMALL_STATE(1001)] = 40158, + [SMALL_STATE(1002)] = 40173, + [SMALL_STATE(1003)] = 40192, + [SMALL_STATE(1004)] = 40207, + [SMALL_STATE(1005)] = 40224, + [SMALL_STATE(1006)] = 40239, + [SMALL_STATE(1007)] = 40250, + [SMALL_STATE(1008)] = 40269, + [SMALL_STATE(1009)] = 40288, + [SMALL_STATE(1010)] = 40303, + [SMALL_STATE(1011)] = 40322, + [SMALL_STATE(1012)] = 40341, + [SMALL_STATE(1013)] = 40360, + [SMALL_STATE(1014)] = 40377, + [SMALL_STATE(1015)] = 40396, + [SMALL_STATE(1016)] = 40413, + [SMALL_STATE(1017)] = 40424, + [SMALL_STATE(1018)] = 40435, + [SMALL_STATE(1019)] = 40452, + [SMALL_STATE(1020)] = 40463, + [SMALL_STATE(1021)] = 40474, + [SMALL_STATE(1022)] = 40485, + [SMALL_STATE(1023)] = 40496, + [SMALL_STATE(1024)] = 40507, + [SMALL_STATE(1025)] = 40518, + [SMALL_STATE(1026)] = 40537, + [SMALL_STATE(1027)] = 40548, + [SMALL_STATE(1028)] = 40567, + [SMALL_STATE(1029)] = 40578, + [SMALL_STATE(1030)] = 40597, + [SMALL_STATE(1031)] = 40614, + [SMALL_STATE(1032)] = 40633, + [SMALL_STATE(1033)] = 40650, + [SMALL_STATE(1034)] = 40661, + [SMALL_STATE(1035)] = 40672, + [SMALL_STATE(1036)] = 40689, + [SMALL_STATE(1037)] = 40700, + [SMALL_STATE(1038)] = 40711, + [SMALL_STATE(1039)] = 40728, + [SMALL_STATE(1040)] = 40739, + [SMALL_STATE(1041)] = 40758, + [SMALL_STATE(1042)] = 40774, + [SMALL_STATE(1043)] = 40790, + [SMALL_STATE(1044)] = 40804, + [SMALL_STATE(1045)] = 40818, + [SMALL_STATE(1046)] = 40834, + [SMALL_STATE(1047)] = 40846, + [SMALL_STATE(1048)] = 40862, + [SMALL_STATE(1049)] = 40878, + [SMALL_STATE(1050)] = 40894, + [SMALL_STATE(1051)] = 40908, + [SMALL_STATE(1052)] = 40924, + [SMALL_STATE(1053)] = 40940, + [SMALL_STATE(1054)] = 40956, + [SMALL_STATE(1055)] = 40972, + [SMALL_STATE(1056)] = 40984, + [SMALL_STATE(1057)] = 41000, + [SMALL_STATE(1058)] = 41016, + [SMALL_STATE(1059)] = 41032, + [SMALL_STATE(1060)] = 41048, + [SMALL_STATE(1061)] = 41064, + [SMALL_STATE(1062)] = 41080, + [SMALL_STATE(1063)] = 41096, + [SMALL_STATE(1064)] = 41110, + [SMALL_STATE(1065)] = 41126, + [SMALL_STATE(1066)] = 41140, + [SMALL_STATE(1067)] = 41156, + [SMALL_STATE(1068)] = 41172, + [SMALL_STATE(1069)] = 41188, + [SMALL_STATE(1070)] = 41204, + [SMALL_STATE(1071)] = 41220, + [SMALL_STATE(1072)] = 41236, + [SMALL_STATE(1073)] = 41252, + [SMALL_STATE(1074)] = 41268, + [SMALL_STATE(1075)] = 41284, + [SMALL_STATE(1076)] = 41300, + [SMALL_STATE(1077)] = 41314, + [SMALL_STATE(1078)] = 41330, + [SMALL_STATE(1079)] = 41346, + [SMALL_STATE(1080)] = 41362, + [SMALL_STATE(1081)] = 41374, + [SMALL_STATE(1082)] = 41388, + [SMALL_STATE(1083)] = 41404, + [SMALL_STATE(1084)] = 41420, + [SMALL_STATE(1085)] = 41436, + [SMALL_STATE(1086)] = 41452, + [SMALL_STATE(1087)] = 41468, + [SMALL_STATE(1088)] = 41484, + [SMALL_STATE(1089)] = 41500, + [SMALL_STATE(1090)] = 41516, + [SMALL_STATE(1091)] = 41530, + [SMALL_STATE(1092)] = 41546, + [SMALL_STATE(1093)] = 41560, + [SMALL_STATE(1094)] = 41576, + [SMALL_STATE(1095)] = 41592, + [SMALL_STATE(1096)] = 41608, + [SMALL_STATE(1097)] = 41624, + [SMALL_STATE(1098)] = 41640, + [SMALL_STATE(1099)] = 41656, + [SMALL_STATE(1100)] = 41672, + [SMALL_STATE(1101)] = 41684, + [SMALL_STATE(1102)] = 41700, + [SMALL_STATE(1103)] = 41716, + [SMALL_STATE(1104)] = 41732, + [SMALL_STATE(1105)] = 41748, + [SMALL_STATE(1106)] = 41762, + [SMALL_STATE(1107)] = 41778, + [SMALL_STATE(1108)] = 41794, + [SMALL_STATE(1109)] = 41810, + [SMALL_STATE(1110)] = 41826, + [SMALL_STATE(1111)] = 41840, + [SMALL_STATE(1112)] = 41856, + [SMALL_STATE(1113)] = 41872, + [SMALL_STATE(1114)] = 41888, + [SMALL_STATE(1115)] = 41904, + [SMALL_STATE(1116)] = 41920, + [SMALL_STATE(1117)] = 41934, + [SMALL_STATE(1118)] = 41950, + [SMALL_STATE(1119)] = 41964, + [SMALL_STATE(1120)] = 41980, + [SMALL_STATE(1121)] = 41994, + [SMALL_STATE(1122)] = 42008, + [SMALL_STATE(1123)] = 42024, + [SMALL_STATE(1124)] = 42040, + [SMALL_STATE(1125)] = 42056, + [SMALL_STATE(1126)] = 42072, + [SMALL_STATE(1127)] = 42088, + [SMALL_STATE(1128)] = 42104, + [SMALL_STATE(1129)] = 42120, + [SMALL_STATE(1130)] = 42136, + [SMALL_STATE(1131)] = 42152, + [SMALL_STATE(1132)] = 42168, + [SMALL_STATE(1133)] = 42184, + [SMALL_STATE(1134)] = 42200, + [SMALL_STATE(1135)] = 42216, + [SMALL_STATE(1136)] = 42230, + [SMALL_STATE(1137)] = 42242, + [SMALL_STATE(1138)] = 42258, + [SMALL_STATE(1139)] = 42272, + [SMALL_STATE(1140)] = 42286, + [SMALL_STATE(1141)] = 42298, + [SMALL_STATE(1142)] = 42307, + [SMALL_STATE(1143)] = 42320, + [SMALL_STATE(1144)] = 42331, + [SMALL_STATE(1145)] = 42340, + [SMALL_STATE(1146)] = 42353, + [SMALL_STATE(1147)] = 42364, + [SMALL_STATE(1148)] = 42373, + [SMALL_STATE(1149)] = 42382, + [SMALL_STATE(1150)] = 42395, + [SMALL_STATE(1151)] = 42408, + [SMALL_STATE(1152)] = 42421, + [SMALL_STATE(1153)] = 42434, + [SMALL_STATE(1154)] = 42445, + [SMALL_STATE(1155)] = 42458, + [SMALL_STATE(1156)] = 42471, + [SMALL_STATE(1157)] = 42484, + [SMALL_STATE(1158)] = 42495, + [SMALL_STATE(1159)] = 42508, + [SMALL_STATE(1160)] = 42519, + [SMALL_STATE(1161)] = 42532, + [SMALL_STATE(1162)] = 42541, + [SMALL_STATE(1163)] = 42554, + [SMALL_STATE(1164)] = 42567, + [SMALL_STATE(1165)] = 42580, + [SMALL_STATE(1166)] = 42589, + [SMALL_STATE(1167)] = 42600, + [SMALL_STATE(1168)] = 42609, + [SMALL_STATE(1169)] = 42618, + [SMALL_STATE(1170)] = 42627, + [SMALL_STATE(1171)] = 42636, + [SMALL_STATE(1172)] = 42645, + [SMALL_STATE(1173)] = 42658, + [SMALL_STATE(1174)] = 42671, + [SMALL_STATE(1175)] = 42684, + [SMALL_STATE(1176)] = 42693, + [SMALL_STATE(1177)] = 42702, + [SMALL_STATE(1178)] = 42715, + [SMALL_STATE(1179)] = 42728, + [SMALL_STATE(1180)] = 42741, + [SMALL_STATE(1181)] = 42752, + [SMALL_STATE(1182)] = 42765, + [SMALL_STATE(1183)] = 42776, + [SMALL_STATE(1184)] = 42789, + [SMALL_STATE(1185)] = 42798, + [SMALL_STATE(1186)] = 42807, + [SMALL_STATE(1187)] = 42820, + [SMALL_STATE(1188)] = 42833, + [SMALL_STATE(1189)] = 42842, + [SMALL_STATE(1190)] = 42853, + [SMALL_STATE(1191)] = 42866, + [SMALL_STATE(1192)] = 42879, + [SMALL_STATE(1193)] = 42890, + [SMALL_STATE(1194)] = 42899, + [SMALL_STATE(1195)] = 42912, + [SMALL_STATE(1196)] = 42921, + [SMALL_STATE(1197)] = 42934, + [SMALL_STATE(1198)] = 42947, + [SMALL_STATE(1199)] = 42960, + [SMALL_STATE(1200)] = 42969, + [SMALL_STATE(1201)] = 42982, + [SMALL_STATE(1202)] = 42995, + [SMALL_STATE(1203)] = 43004, + [SMALL_STATE(1204)] = 43013, + [SMALL_STATE(1205)] = 43026, + [SMALL_STATE(1206)] = 43039, + [SMALL_STATE(1207)] = 43052, + [SMALL_STATE(1208)] = 43065, + [SMALL_STATE(1209)] = 43078, + [SMALL_STATE(1210)] = 43091, + [SMALL_STATE(1211)] = 43100, + [SMALL_STATE(1212)] = 43109, + [SMALL_STATE(1213)] = 43122, + [SMALL_STATE(1214)] = 43131, + [SMALL_STATE(1215)] = 43140, + [SMALL_STATE(1216)] = 43153, + [SMALL_STATE(1217)] = 43162, + [SMALL_STATE(1218)] = 43171, + [SMALL_STATE(1219)] = 43180, + [SMALL_STATE(1220)] = 43193, + [SMALL_STATE(1221)] = 43206, + [SMALL_STATE(1222)] = 43215, + [SMALL_STATE(1223)] = 43224, + [SMALL_STATE(1224)] = 43237, + [SMALL_STATE(1225)] = 43250, + [SMALL_STATE(1226)] = 43259, + [SMALL_STATE(1227)] = 43272, + [SMALL_STATE(1228)] = 43285, + [SMALL_STATE(1229)] = 43296, + [SMALL_STATE(1230)] = 43307, + [SMALL_STATE(1231)] = 43316, + [SMALL_STATE(1232)] = 43329, + [SMALL_STATE(1233)] = 43342, + [SMALL_STATE(1234)] = 43355, + [SMALL_STATE(1235)] = 43364, + [SMALL_STATE(1236)] = 43377, + [SMALL_STATE(1237)] = 43388, + [SMALL_STATE(1238)] = 43401, + [SMALL_STATE(1239)] = 43414, + [SMALL_STATE(1240)] = 43423, + [SMALL_STATE(1241)] = 43436, + [SMALL_STATE(1242)] = 43445, + [SMALL_STATE(1243)] = 43458, + [SMALL_STATE(1244)] = 43467, + [SMALL_STATE(1245)] = 43476, + [SMALL_STATE(1246)] = 43489, + [SMALL_STATE(1247)] = 43502, + [SMALL_STATE(1248)] = 43515, + [SMALL_STATE(1249)] = 43524, + [SMALL_STATE(1250)] = 43537, + [SMALL_STATE(1251)] = 43546, + [SMALL_STATE(1252)] = 43559, + [SMALL_STATE(1253)] = 43568, + [SMALL_STATE(1254)] = 43581, + [SMALL_STATE(1255)] = 43592, + [SMALL_STATE(1256)] = 43605, + [SMALL_STATE(1257)] = 43616, + [SMALL_STATE(1258)] = 43627, + [SMALL_STATE(1259)] = 43640, + [SMALL_STATE(1260)] = 43653, + [SMALL_STATE(1261)] = 43666, + [SMALL_STATE(1262)] = 43679, + [SMALL_STATE(1263)] = 43692, + [SMALL_STATE(1264)] = 43701, + [SMALL_STATE(1265)] = 43712, + [SMALL_STATE(1266)] = 43721, + [SMALL_STATE(1267)] = 43734, + [SMALL_STATE(1268)] = 43743, + [SMALL_STATE(1269)] = 43756, + [SMALL_STATE(1270)] = 43765, + [SMALL_STATE(1271)] = 43774, + [SMALL_STATE(1272)] = 43787, + [SMALL_STATE(1273)] = 43800, + [SMALL_STATE(1274)] = 43809, + [SMALL_STATE(1275)] = 43822, + [SMALL_STATE(1276)] = 43835, + [SMALL_STATE(1277)] = 43848, + [SMALL_STATE(1278)] = 43861, + [SMALL_STATE(1279)] = 43870, + [SMALL_STATE(1280)] = 43883, + [SMALL_STATE(1281)] = 43896, + [SMALL_STATE(1282)] = 43909, + [SMALL_STATE(1283)] = 43922, + [SMALL_STATE(1284)] = 43935, + [SMALL_STATE(1285)] = 43948, + [SMALL_STATE(1286)] = 43961, + [SMALL_STATE(1287)] = 43974, + [SMALL_STATE(1288)] = 43987, + [SMALL_STATE(1289)] = 44000, + [SMALL_STATE(1290)] = 44013, + [SMALL_STATE(1291)] = 44022, + [SMALL_STATE(1292)] = 44035, + [SMALL_STATE(1293)] = 44048, + [SMALL_STATE(1294)] = 44059, + [SMALL_STATE(1295)] = 44072, + [SMALL_STATE(1296)] = 44085, + [SMALL_STATE(1297)] = 44098, + [SMALL_STATE(1298)] = 44111, + [SMALL_STATE(1299)] = 44124, + [SMALL_STATE(1300)] = 44137, + [SMALL_STATE(1301)] = 44150, + [SMALL_STATE(1302)] = 44163, + [SMALL_STATE(1303)] = 44176, + [SMALL_STATE(1304)] = 44189, + [SMALL_STATE(1305)] = 44202, + [SMALL_STATE(1306)] = 44215, + [SMALL_STATE(1307)] = 44228, + [SMALL_STATE(1308)] = 44241, + [SMALL_STATE(1309)] = 44254, + [SMALL_STATE(1310)] = 44267, + [SMALL_STATE(1311)] = 44280, + [SMALL_STATE(1312)] = 44293, + [SMALL_STATE(1313)] = 44306, + [SMALL_STATE(1314)] = 44319, + [SMALL_STATE(1315)] = 44332, + [SMALL_STATE(1316)] = 44345, + [SMALL_STATE(1317)] = 44358, + [SMALL_STATE(1318)] = 44371, + [SMALL_STATE(1319)] = 44384, + [SMALL_STATE(1320)] = 44395, + [SMALL_STATE(1321)] = 44404, + [SMALL_STATE(1322)] = 44413, + [SMALL_STATE(1323)] = 44426, + [SMALL_STATE(1324)] = 44439, + [SMALL_STATE(1325)] = 44452, + [SMALL_STATE(1326)] = 44465, + [SMALL_STATE(1327)] = 44478, + [SMALL_STATE(1328)] = 44491, + [SMALL_STATE(1329)] = 44504, + [SMALL_STATE(1330)] = 44517, + [SMALL_STATE(1331)] = 44530, + [SMALL_STATE(1332)] = 44543, + [SMALL_STATE(1333)] = 44556, + [SMALL_STATE(1334)] = 44566, + [SMALL_STATE(1335)] = 44574, + [SMALL_STATE(1336)] = 44584, + [SMALL_STATE(1337)] = 44594, + [SMALL_STATE(1338)] = 44604, + [SMALL_STATE(1339)] = 44614, + [SMALL_STATE(1340)] = 44624, + [SMALL_STATE(1341)] = 44632, + [SMALL_STATE(1342)] = 44642, + [SMALL_STATE(1343)] = 44652, + [SMALL_STATE(1344)] = 44662, + [SMALL_STATE(1345)] = 44670, + [SMALL_STATE(1346)] = 44680, + [SMALL_STATE(1347)] = 44688, + [SMALL_STATE(1348)] = 44696, + [SMALL_STATE(1349)] = 44706, + [SMALL_STATE(1350)] = 44716, + [SMALL_STATE(1351)] = 44724, + [SMALL_STATE(1352)] = 44732, + [SMALL_STATE(1353)] = 44740, + [SMALL_STATE(1354)] = 44748, + [SMALL_STATE(1355)] = 44758, + [SMALL_STATE(1356)] = 44768, + [SMALL_STATE(1357)] = 44776, + [SMALL_STATE(1358)] = 44784, + [SMALL_STATE(1359)] = 44792, + [SMALL_STATE(1360)] = 44802, + [SMALL_STATE(1361)] = 44812, + [SMALL_STATE(1362)] = 44822, + [SMALL_STATE(1363)] = 44832, + [SMALL_STATE(1364)] = 44840, + [SMALL_STATE(1365)] = 44850, + [SMALL_STATE(1366)] = 44860, + [SMALL_STATE(1367)] = 44868, + [SMALL_STATE(1368)] = 44878, + [SMALL_STATE(1369)] = 44886, + [SMALL_STATE(1370)] = 44896, + [SMALL_STATE(1371)] = 44906, + [SMALL_STATE(1372)] = 44916, + [SMALL_STATE(1373)] = 44926, + [SMALL_STATE(1374)] = 44936, + [SMALL_STATE(1375)] = 44946, + [SMALL_STATE(1376)] = 44956, + [SMALL_STATE(1377)] = 44964, + [SMALL_STATE(1378)] = 44974, + [SMALL_STATE(1379)] = 44984, + [SMALL_STATE(1380)] = 44994, + [SMALL_STATE(1381)] = 45004, + [SMALL_STATE(1382)] = 45014, + [SMALL_STATE(1383)] = 45022, + [SMALL_STATE(1384)] = 45030, + [SMALL_STATE(1385)] = 45038, + [SMALL_STATE(1386)] = 45046, + [SMALL_STATE(1387)] = 45054, + [SMALL_STATE(1388)] = 45062, + [SMALL_STATE(1389)] = 45070, + [SMALL_STATE(1390)] = 45080, + [SMALL_STATE(1391)] = 45090, + [SMALL_STATE(1392)] = 45100, + [SMALL_STATE(1393)] = 45108, + [SMALL_STATE(1394)] = 45118, + [SMALL_STATE(1395)] = 45128, + [SMALL_STATE(1396)] = 45138, + [SMALL_STATE(1397)] = 45146, + [SMALL_STATE(1398)] = 45154, + [SMALL_STATE(1399)] = 45162, + [SMALL_STATE(1400)] = 45170, + [SMALL_STATE(1401)] = 45178, + [SMALL_STATE(1402)] = 45188, + [SMALL_STATE(1403)] = 45198, + [SMALL_STATE(1404)] = 45206, + [SMALL_STATE(1405)] = 45216, + [SMALL_STATE(1406)] = 45226, + [SMALL_STATE(1407)] = 45236, + [SMALL_STATE(1408)] = 45246, + [SMALL_STATE(1409)] = 45256, + [SMALL_STATE(1410)] = 45266, + [SMALL_STATE(1411)] = 45276, + [SMALL_STATE(1412)] = 45286, + [SMALL_STATE(1413)] = 45296, + [SMALL_STATE(1414)] = 45304, + [SMALL_STATE(1415)] = 45314, + [SMALL_STATE(1416)] = 45324, + [SMALL_STATE(1417)] = 45332, + [SMALL_STATE(1418)] = 45342, + [SMALL_STATE(1419)] = 45350, + [SMALL_STATE(1420)] = 45358, + [SMALL_STATE(1421)] = 45368, + [SMALL_STATE(1422)] = 45378, + [SMALL_STATE(1423)] = 45388, + [SMALL_STATE(1424)] = 45396, + [SMALL_STATE(1425)] = 45404, + [SMALL_STATE(1426)] = 45414, + [SMALL_STATE(1427)] = 45422, + [SMALL_STATE(1428)] = 45432, + [SMALL_STATE(1429)] = 45442, + [SMALL_STATE(1430)] = 45452, + [SMALL_STATE(1431)] = 45462, + [SMALL_STATE(1432)] = 45470, + [SMALL_STATE(1433)] = 45480, + [SMALL_STATE(1434)] = 45490, + [SMALL_STATE(1435)] = 45498, + [SMALL_STATE(1436)] = 45508, + [SMALL_STATE(1437)] = 45518, + [SMALL_STATE(1438)] = 45526, + [SMALL_STATE(1439)] = 45536, + [SMALL_STATE(1440)] = 45544, + [SMALL_STATE(1441)] = 45554, + [SMALL_STATE(1442)] = 45562, + [SMALL_STATE(1443)] = 45570, + [SMALL_STATE(1444)] = 45580, + [SMALL_STATE(1445)] = 45590, + [SMALL_STATE(1446)] = 45600, + [SMALL_STATE(1447)] = 45610, + [SMALL_STATE(1448)] = 45620, + [SMALL_STATE(1449)] = 45630, + [SMALL_STATE(1450)] = 45640, + [SMALL_STATE(1451)] = 45650, + [SMALL_STATE(1452)] = 45660, + [SMALL_STATE(1453)] = 45670, + [SMALL_STATE(1454)] = 45680, + [SMALL_STATE(1455)] = 45690, + [SMALL_STATE(1456)] = 45700, + [SMALL_STATE(1457)] = 45710, + [SMALL_STATE(1458)] = 45720, + [SMALL_STATE(1459)] = 45730, + [SMALL_STATE(1460)] = 45740, + [SMALL_STATE(1461)] = 45750, + [SMALL_STATE(1462)] = 45760, + [SMALL_STATE(1463)] = 45768, + [SMALL_STATE(1464)] = 45776, + [SMALL_STATE(1465)] = 45784, + [SMALL_STATE(1466)] = 45794, + [SMALL_STATE(1467)] = 45804, + [SMALL_STATE(1468)] = 45814, + [SMALL_STATE(1469)] = 45821, + [SMALL_STATE(1470)] = 45828, + [SMALL_STATE(1471)] = 45835, + [SMALL_STATE(1472)] = 45842, + [SMALL_STATE(1473)] = 45849, + [SMALL_STATE(1474)] = 45856, + [SMALL_STATE(1475)] = 45863, + [SMALL_STATE(1476)] = 45870, + [SMALL_STATE(1477)] = 45877, + [SMALL_STATE(1478)] = 45884, + [SMALL_STATE(1479)] = 45891, + [SMALL_STATE(1480)] = 45898, + [SMALL_STATE(1481)] = 45905, + [SMALL_STATE(1482)] = 45912, + [SMALL_STATE(1483)] = 45919, + [SMALL_STATE(1484)] = 45926, + [SMALL_STATE(1485)] = 45933, + [SMALL_STATE(1486)] = 45940, + [SMALL_STATE(1487)] = 45947, + [SMALL_STATE(1488)] = 45954, + [SMALL_STATE(1489)] = 45961, + [SMALL_STATE(1490)] = 45968, + [SMALL_STATE(1491)] = 45975, + [SMALL_STATE(1492)] = 45982, + [SMALL_STATE(1493)] = 45989, + [SMALL_STATE(1494)] = 45996, + [SMALL_STATE(1495)] = 46003, + [SMALL_STATE(1496)] = 46010, + [SMALL_STATE(1497)] = 46017, + [SMALL_STATE(1498)] = 46024, + [SMALL_STATE(1499)] = 46031, + [SMALL_STATE(1500)] = 46038, + [SMALL_STATE(1501)] = 46045, + [SMALL_STATE(1502)] = 46052, + [SMALL_STATE(1503)] = 46059, + [SMALL_STATE(1504)] = 46066, + [SMALL_STATE(1505)] = 46073, + [SMALL_STATE(1506)] = 46080, + [SMALL_STATE(1507)] = 46087, + [SMALL_STATE(1508)] = 46094, + [SMALL_STATE(1509)] = 46101, + [SMALL_STATE(1510)] = 46108, + [SMALL_STATE(1511)] = 46115, + [SMALL_STATE(1512)] = 46122, + [SMALL_STATE(1513)] = 46129, + [SMALL_STATE(1514)] = 46136, + [SMALL_STATE(1515)] = 46143, + [SMALL_STATE(1516)] = 46150, + [SMALL_STATE(1517)] = 46157, + [SMALL_STATE(1518)] = 46164, + [SMALL_STATE(1519)] = 46171, + [SMALL_STATE(1520)] = 46178, + [SMALL_STATE(1521)] = 46185, + [SMALL_STATE(1522)] = 46192, + [SMALL_STATE(1523)] = 46199, + [SMALL_STATE(1524)] = 46206, + [SMALL_STATE(1525)] = 46213, + [SMALL_STATE(1526)] = 46220, + [SMALL_STATE(1527)] = 46227, + [SMALL_STATE(1528)] = 46234, + [SMALL_STATE(1529)] = 46241, + [SMALL_STATE(1530)] = 46248, + [SMALL_STATE(1531)] = 46255, + [SMALL_STATE(1532)] = 46262, + [SMALL_STATE(1533)] = 46269, + [SMALL_STATE(1534)] = 46276, + [SMALL_STATE(1535)] = 46283, + [SMALL_STATE(1536)] = 46290, + [SMALL_STATE(1537)] = 46297, + [SMALL_STATE(1538)] = 46304, + [SMALL_STATE(1539)] = 46311, + [SMALL_STATE(1540)] = 46318, + [SMALL_STATE(1541)] = 46325, + [SMALL_STATE(1542)] = 46332, + [SMALL_STATE(1543)] = 46339, + [SMALL_STATE(1544)] = 46346, + [SMALL_STATE(1545)] = 46353, + [SMALL_STATE(1546)] = 46360, + [SMALL_STATE(1547)] = 46367, + [SMALL_STATE(1548)] = 46374, + [SMALL_STATE(1549)] = 46381, + [SMALL_STATE(1550)] = 46388, + [SMALL_STATE(1551)] = 46395, + [SMALL_STATE(1552)] = 46402, + [SMALL_STATE(1553)] = 46409, + [SMALL_STATE(1554)] = 46416, + [SMALL_STATE(1555)] = 46423, + [SMALL_STATE(1556)] = 46430, + [SMALL_STATE(1557)] = 46437, + [SMALL_STATE(1558)] = 46444, + [SMALL_STATE(1559)] = 46451, + [SMALL_STATE(1560)] = 46458, + [SMALL_STATE(1561)] = 46465, + [SMALL_STATE(1562)] = 46472, + [SMALL_STATE(1563)] = 46479, + [SMALL_STATE(1564)] = 46486, + [SMALL_STATE(1565)] = 46493, + [SMALL_STATE(1566)] = 46500, + [SMALL_STATE(1567)] = 46507, + [SMALL_STATE(1568)] = 46514, + [SMALL_STATE(1569)] = 46521, + [SMALL_STATE(1570)] = 46528, + [SMALL_STATE(1571)] = 46535, + [SMALL_STATE(1572)] = 46542, + [SMALL_STATE(1573)] = 46549, + [SMALL_STATE(1574)] = 46556, + [SMALL_STATE(1575)] = 46563, + [SMALL_STATE(1576)] = 46570, + [SMALL_STATE(1577)] = 46577, + [SMALL_STATE(1578)] = 46584, + [SMALL_STATE(1579)] = 46591, + [SMALL_STATE(1580)] = 46598, + [SMALL_STATE(1581)] = 46605, + [SMALL_STATE(1582)] = 46612, + [SMALL_STATE(1583)] = 46619, + [SMALL_STATE(1584)] = 46626, + [SMALL_STATE(1585)] = 46633, + [SMALL_STATE(1586)] = 46640, + [SMALL_STATE(1587)] = 46647, + [SMALL_STATE(1588)] = 46654, + [SMALL_STATE(1589)] = 46661, + [SMALL_STATE(1590)] = 46668, + [SMALL_STATE(1591)] = 46675, + [SMALL_STATE(1592)] = 46682, + [SMALL_STATE(1593)] = 46689, + [SMALL_STATE(1594)] = 46696, + [SMALL_STATE(1595)] = 46703, + [SMALL_STATE(1596)] = 46710, + [SMALL_STATE(1597)] = 46717, + [SMALL_STATE(1598)] = 46724, + [SMALL_STATE(1599)] = 46731, + [SMALL_STATE(1600)] = 46738, + [SMALL_STATE(1601)] = 46745, + [SMALL_STATE(1602)] = 46752, + [SMALL_STATE(1603)] = 46759, + [SMALL_STATE(1604)] = 46766, + [SMALL_STATE(1605)] = 46773, + [SMALL_STATE(1606)] = 46780, + [SMALL_STATE(1607)] = 46787, + [SMALL_STATE(1608)] = 46794, + [SMALL_STATE(1609)] = 46801, + [SMALL_STATE(1610)] = 46808, + [SMALL_STATE(1611)] = 46815, + [SMALL_STATE(1612)] = 46822, + [SMALL_STATE(1613)] = 46829, + [SMALL_STATE(1614)] = 46836, + [SMALL_STATE(1615)] = 46843, + [SMALL_STATE(1616)] = 46850, + [SMALL_STATE(1617)] = 46857, + [SMALL_STATE(1618)] = 46864, + [SMALL_STATE(1619)] = 46871, + [SMALL_STATE(1620)] = 46878, + [SMALL_STATE(1621)] = 46885, + [SMALL_STATE(1622)] = 46892, + [SMALL_STATE(1623)] = 46899, + [SMALL_STATE(1624)] = 46906, + [SMALL_STATE(1625)] = 46913, + [SMALL_STATE(1626)] = 46920, + [SMALL_STATE(1627)] = 46927, + [SMALL_STATE(1628)] = 46934, + [SMALL_STATE(1629)] = 46941, + [SMALL_STATE(1630)] = 46948, +}; + +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(1489), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [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_delim_token_tree, 3, 0, 0), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(67), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(98), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1349), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(114), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(472), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(200), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(484), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(428), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(126), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1354), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(127), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(480), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1584), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(475), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(141), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(411), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1583), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1507), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 87), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 87), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), + [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_impl_item, 7, 0, 114), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), + [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_extern_type, 6, 0, 105), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(927), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3538] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), +}; + +#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_ From a182bd3e20903db726baa106112036a3d8fd84b3 Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 10 Jun 2024 14:46:06 +0200 Subject: [PATCH 2/4] chore(ci): add ci --- .github/workflows/ci.yml | 49 ++ .github/workflows/fuzz.yml | 21 + .github/workflows/lint.yml | 25 + grammar.js | 701 ++++++++--------- package-lock.json | 1445 +++++++++++++++++++++++++++++++++++- package.json | 59 +- queries/indents.scm | 2 - 7 files changed, 1912 insertions(+), 390 deletions(-) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/fuzz.yml create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3fffeee --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,49 @@ +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 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/grammar.js b/grammar.js index 54a59a3..74a39c4 100644 --- a/grammar.js +++ b/grammar.js @@ -14,65 +14,14 @@ const PREC = { or: 2, assign: 0, }; -const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = [ - "+", - "-", - "*", - "/", - "%", - "^", - "!", - "~", - "&", - "|", - "&&", - "||", - "<<", - ">>", - "+=", - "-=", - "*=", - "/=", - "%=", - "^=", - "&=", - "|=", - "=", - "==", - "!=", - ">", - "<", - ">=", - "<=", - "@", - "_", - ".", - ",", - ";", - ":", - "::", - "->", - "=>", - "#", - "?", +const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = ['+', '-', '*', '/', '%', '^', '!', '~', '&', '|', '&&', '||', '<<', '>>', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '=', '==', '!=', '>', '<', '>=', '<=', '@', '_', '.', ',', ';', ':', '::', '->', '=>', '#', '?', ]; -const integerTypes = [ - "u8", - "i8", - "u16", - "i16", - "u32", - "i32", - "u64", - "i64", - "u128", - "i128", - "usize", +const integerTypes = ['u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'u128', 'i128', 'usize', ]; -const primitiveTypes = integerTypes.concat(["bool", "ByteArray", "felt252"]); +const primitiveTypes = integerTypes.concat(['bool', 'ByteArray', 'felt252']); module.exports = grammar({ - name: "cairo", + name: 'cairo', extras: ($) => [/\s/, $.line_comment], conflicts: ($) => [ @@ -122,7 +71,7 @@ module.exports = grammar({ $.trait_item, $.let_declaration, $.use_declaration, - $.associated_type + $.associated_type, ), // Declaration section @@ -133,19 +82,19 @@ module.exports = grammar({ // 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), "}"), + declaration_list: ($) => seq('{', repeat($._declaration_statement), '}'), // `impl Foo of FooTrait<...> { } // `impl Bar of BarTrait;` impl_item: ($) => seq( optional($.visibility_modifier), - "impl", + 'impl', $.identifier, - field("type_parameters", optional($.type_parameters)), - "of", + field('type_parameters', optional($.type_parameters)), + 'of', $._type, - choice(field("body", $.declaration_list), ";") + choice(field('body', $.declaration_list), ';'), ), // trait A { @@ -156,125 +105,125 @@ module.exports = grammar({ trait_item: ($) => seq( optional($.visibility_modifier), - "trait", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - choice(field("body", $.declaration_list), ";") + '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)), - ";" + '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))), - ";" + 'const', + field('name', $.identifier), + ':', + field('type', $._type), + optional(seq('=', field('value', $.expression))), + ';', ), // array![] macro_invocation: ($) => seq( field( - "macro", - choice($.scoped_identifier, $.identifier, $._reserved_identifier) + 'macro', + choice($.scoped_identifier, $.identifier, $._reserved_identifier), ), - "!", - alias($.delim_token_tree, $.token_tree) + '!', + alias($.delim_token_tree, $.token_tree), ), - empty_statement: (_) => ";", + empty_statement: (_) => ';', // #[derive(Debug)] - attribute_item: ($) => seq("#", "[", $.attribute, "]"), + attribute_item: ($) => seq('#', '[', $.attribute, ']'), // #![deny(missing_docs)] - inner_attribute_item: ($) => seq("#", "!", "[", $.attribute, "]"), + 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)) - ) - ) + 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)) + '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)), ";") + '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) + '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(","), - "}" + '{', + 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) + 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(","), - "}" + '{', + 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) + field('name', $._field_identifier), + ':', + field('type', $._type), ), // impl HashBool, +Drop> = into_felt252_based::HashImpl; @@ -284,13 +233,13 @@ module.exports = grammar({ $.extern_type, seq( optional($.visibility_modifier), - choice("type", "impl"), - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - "=", - choice(field("type", $._type)), - ";" - ) + choice('type', 'impl'), + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + '=', + choice(field('type', $._type)), + ';', + ), ), // pub extern type Poseidon; @@ -298,64 +247,64 @@ module.exports = grammar({ seq( optional($.visibility_modifier), $.extern, - "type", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - ";" + '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, ";"), + seq(optional($.visibility_modifier), $.extern, $.function, ';'), // fn default() -> HashState { // PoseidonTrait::new() // } function_item: ($) => - seq(optional($.visibility_modifier), $.function, field("body", $.block)), + 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, ";"), + 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))), + '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))) + 'implicit_arguments', + optional(seq('implicits', sepBy(',', $._type))), ), - optional($.nopanic) + optional($.nopanic), ), // let a = 1; let_declaration: ($) => seq( - "let", + 'let', optional($.mutable_specifier), - field("pattern", $._pattern), - optional(seq(":", field("type", $._type))), - optional(seq("=", field("value", $.expression))), - ";" + 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), - ";" + 'use', + field('argument', $._use_clause), + ';', ), // helper for use declaration @@ -365,43 +314,43 @@ module.exports = grammar({ $.use_as_clause, $.use_list, $.scoped_use_list, - $.use_wildcard + $.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)), + seq(field('path', optional($._path)), '::', field('list', $.use_list)), // {a as a, b, c::*} use_list: ($) => - seq("{", sepBy(",", choice($._use_clause)), optional(","), "}"), + seq('{', sepBy(',', choice($._use_clause)), optional(','), '}'), // a as a use_as_clause: ($) => - seq(field("path", $._path), "as", field("alias", $.identifier)), + seq(field('path', $._path), 'as', field('alias', $.identifier)), - //c::* - use_wildcard: ($) => seq(optional(seq($._path, "::")), "*"), + // 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)) + ',', + seq(optional($.attribute_item), choice($.parameter, '_', $._type)), ), - optional(","), - ")" + optional(','), + ')', ), // x: u32 parameter: ($) => seq( optional(choice($.ref_specifier, $.mutable_specifier)), - field("pattern", $._pattern), - ":", - field("type", $._type) + field('pattern', $._pattern), + ':', + field('type', $._type), ), // Types section @@ -416,7 +365,7 @@ module.exports = grammar({ $.array_type, $._type_identifier, $.macro_invocation, - alias(choice(...primitiveTypes), $.primitive_type) + alias(choice(...primitiveTypes), $.primitive_type), ), // Helper @@ -426,7 +375,7 @@ module.exports = grammar({ $.super, $.identifier, $.scoped_identifier, - $._reserved_identifier + $._reserved_identifier, ), // for example in trait A {} it would be `` @@ -434,9 +383,9 @@ module.exports = grammar({ prec( 1, seq( - "<", + '<', sepBy1( - ",", + ',', seq( repeat($.attribute_item), choice( @@ -445,35 +394,35 @@ module.exports = grammar({ $.generic_type_with_turbofish, $._type_identifier, $.constrained_type_parameter, - $.const_parameter - ) - ) + $.const_parameter, + ), + ), ), - optional(","), - ">" - ) + 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)), + 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) + field('left', seq('impl', $._type_identifier, ':')), + field('bound', $._type), ), seq( - choice("+", "-"), + choice('+', '-'), choice( $.generic_type, $._type_identifier, - $.generic_type_with_turbofish - ) - ) + $.generic_type_with_turbofish, + ), + ), ), // in let a: Array; it would be `Array` generic_type: ($) => @@ -481,47 +430,47 @@ module.exports = grammar({ 1, seq( field( - "type", + 'type', choice( $._type_identifier, $._reserved_identifier, - $.scoped_type_identifier - ) + $.scoped_type_identifier, + ), ), // "::", - field("type_arguments", $.type_arguments) - ) + field('type_arguments', $.type_arguments), + ), ), // in let a: Array::; it would be `Array::` generic_type_with_turbofish: ($) => seq( field( - "type", + 'type', choice( $._type_identifier, $._reserved_identifier, - $.scoped_identifier - ) + $.scoped_identifier, + ), ), - "::", - field("type_arguments", $.type_arguments) + '::', + 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))), - "]" + '[', + 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), "}") + seq('(', repeat($._delim_tokens), ')'), + seq('[', repeat($._delim_tokens), ']'), + seq('{', repeat($._delim_tokens), '}'), ), // Helper _delim_tokens: ($) => @@ -537,28 +486,28 @@ module.exports = grammar({ $.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" + 'break', + 'const', + 'continue', + 'default', + 'enum', + 'fn', + 'if', + 'impl', + 'extern', + 'nopanic', + 'let', + 'loop', + 'match', + 'mod', + 'pub', + 'return', + 'static', + 'struct', + 'trait', + 'type', + 'use', + 'while', ), // Section - Patterns @@ -576,44 +525,44 @@ module.exports = grammar({ $.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(","), ")"), + tuple_pattern: ($) => seq('(', sepBy(',', $._pattern), optional(','), ')'), // for example in let [a, b] = c; it would be `[a, b]` - slice_pattern: ($) => seq("[", sepBy(",", $._pattern), optional(","), "]"), + 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(","), - "}" + 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)), + field('name', alias($.identifier, $.shorthand_field_identifier)), seq( - field("name", $._field_identifier), - ":", - field("pattern", $._pattern) - ) - ) + 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)), - optional(","), - "}" + '{', + sepBy(',', choice($.shorthand_field_initializer, $.field_initializer)), + optional(','), + '}', ), // for example in let a = Foo { a: 1, b}; it would be `b` shorthand_field_initializer: ($) => @@ -623,9 +572,9 @@ module.exports = grammar({ field_initializer: ($) => seq( repeat($.attribute_item), - field("field", choice($._field_identifier, $.numeric_literal)), - ":", - field("value", $.expression) + field('field', choice($._field_identifier, $.numeric_literal)), + ':', + field('value', $.expression), ), // for example in let mut a; it would be `mut a` @@ -639,7 +588,7 @@ module.exports = grammar({ or_pattern: ($) => prec.left( -2, - choice(seq($._pattern, "|", $._pattern), seq("|", $._pattern)) + choice(seq($._pattern, '|', $._pattern), seq('|', $._pattern)), ), // Section - Literals @@ -650,7 +599,7 @@ module.exports = grammar({ $.shortstring_literal, $.boolean_literal, $.numeric_literal, - $.negative_literal + $.negative_literal, ), _literal_pattern: ($) => @@ -659,19 +608,19 @@ module.exports = grammar({ $.shortstring_literal, $.boolean_literal, $.numeric_literal, - prec(-1, $.negative_literal) + prec(-1, $.negative_literal), ), // for example in let a = -1; it would be `-1` - negative_literal: ($) => seq("-", $.numeric_literal), + 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(seq("_", choice(...integerTypes, "u256", "felt252"))) - ) + optional(seq('_', choice(...integerTypes, 'u256', 'felt252'))), + ), ), // allows every ascii char except `"` unless it's escaped (accept escape sequences also) @@ -680,26 +629,26 @@ module.exports = grammar({ // 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"))), + token(seq('\'', /(([^'\\]|\\.){0,31})/, '\'', optional('_felt252'))), - boolean_literal: (_) => choice("true", "false"), + boolean_literal: (_) => choice('true', 'false'), // Should match any token other than a delimiter. - _non_delim_token: ($) => choice($._non_special_token, "$"), + _non_delim_token: ($) => choice($._non_special_token, '$'), // for example in let a = a::b; it would be `a::b` scoped_identifier: ($) => seq( field( - "path", + 'path', optional( choice( $._path, - alias($.generic_type_with_turbofish, $.generic_type) - ) - ) + alias($.generic_type_with_turbofish, $.generic_type), + ), + ), ), - "::", - field("name", choice($.identifier, $.super)) + '::', + field('name', choice($.identifier, $.super)), ), // Makes this type of expression work // core::pedersen::HashState { state }.update_with(value).state @@ -708,53 +657,53 @@ module.exports = grammar({ -2, seq( field( - "path", + 'path', optional( choice( $._path, - alias($.generic_type_with_turbofish, $.generic_type) - ) - ) + alias($.generic_type_with_turbofish, $.generic_type), + ), + ), ), - "::", - field("name", $._type_identifier) - ) + '::', + field('name', $._type_identifier), + ), ), // for example in struct A {a: A::b} it would be `A::b` scoped_type_identifier: ($) => seq( field( - "path", + 'path', optional( choice( $._path, alias($.generic_type_with_turbofish, $.generic_type), - $.generic_type - ) - ) + $.generic_type, + ), + ), ), - "::", - field("name", $._type_identifier) + '::', + field('name', $._type_identifier), ), // for example in struct A {a: (u32, u32)} it would be `(u32, u32)` - tuple_type: ($) => seq("(", sepBy1(",", $._type), optional(","), ")"), + tuple_type: ($) => seq('(', sepBy1(',', $._type), optional(','), ')'), // for example in struct A {a: ()} it would be `()` - unit_type: (_) => seq("(", ")"), + 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(","), - ">" + token(prec(1, '<')), + sepBy1(',', seq(choice($._type, $._literal, $.block))), + optional(','), + '>', ), // Helper expression_statement: ($) => - choice(seq($.expression, ";"), prec(1, $._expression_ending_with_block)), + choice(seq($.expression, ';'), prec(1, $._expression_ending_with_block)), expression: ($) => choice( @@ -782,7 +731,7 @@ module.exports = grammar({ $.continue_expression, $.index_expression, $.parenthesized_expression, - prec(1, $.macro_invocation) + prec(1, $.macro_invocation), ), // for example in a::(); it would be `a::` generic_function: ($) => @@ -790,92 +739,92 @@ module.exports = grammar({ 1, seq( field( - "function", - choice($.identifier, $.scoped_identifier, $.field_expression) + 'function', + choice($.identifier, $.scoped_identifier, $.field_expression), ), - "::", - field("type_arguments", $.type_arguments) - ) + '::', + field('type_arguments', $.type_arguments), + ), ), // (1, 2) tuple_expression: ($) => seq( - "(", + '(', repeat($.attribute_item), - seq($.expression, ","), - repeat(seq($.expression, ",")), + seq($.expression, ','), + repeat(seq($.expression, ',')), optional($.expression), - ")" + ')', ), // return () return_expression: ($) => - choice(prec.left(seq("return", $.expression)), prec(-1, "return")), + choice(prec.left(seq('return', $.expression)), prec(-1, 'return')), // A {a, b} struct_expression: ($) => seq( field( - "name", + 'name', choice( $._type_identifier, alias( $.scoped_type_identifier_in_expression_position, - $.scoped_type_identifier + $.scoped_type_identifier, ), - $.generic_type_with_turbofish - ) + $.generic_type_with_turbofish, + ), ), - field("body", $.field_initializer_list) + field('body', $.field_initializer_list), ), // a = b assignment_expression: ($) => prec.left( PREC.assign, - seq(field("left", $.expression), "=", field("right", $.expression)) + seq(field('left', $.expression), '=', field('right', $.expression)), ), // break true - break_expression: ($) => prec.left(seq("break", optional($.expression))), + break_expression: ($) => prec.left(seq('break', optional($.expression))), // continue - continue_expression: ($) => prec.left(seq("continue")), + continue_expression: ($) => prec.left(seq('continue')), // a[i] index_expression: ($) => - prec(PREC.call, seq($.expression, "[", $.expression, "]")), + prec(PREC.call, seq($.expression, '[', $.expression, ']')), // [1, 2, 3] array_expression: ($) => seq( - "[", + '[', repeat($.attribute_item), choice( - seq($.expression, ";", field("length", $.expression)), + seq($.expression, ';', field('length', $.expression)), seq( - sepBy(",", seq(repeat($.attribute_item), $.expression)), - optional(",") - ) + sepBy(',', seq(repeat($.attribute_item), $.expression)), + optional(','), + ), ), - "]" + ']', ), // (a()) - parenthesized_expression: ($) => seq("(", $.expression, ")"), + parenthesized_expression: ($) => seq('(', $.expression, ')'), // () - unit_expression: (_) => seq("(", ")"), + unit_expression: (_) => seq('(', ')'), // a += 1 compound_assignment_expr: ($) => prec.left( PREC.assign, seq( - field("left", $.expression), - field("operator", choice("+=", "-=", "*=", "/=", "%=")), - field("right", $.expression) - ) + field('left', $.expression), + field('operator', choice('+=', '-=', '*=', '/=', '%=')), + field('right', $.expression), + ), ), // Helper @@ -885,39 +834,39 @@ module.exports = grammar({ $.if_expression, $.match_expression, $.while_expression, - $.loop_expression + $.loop_expression, ), // @1 unary_expression: ($) => - prec(PREC.unary, seq(choice("-", "*", "!", "~", "@"), $.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, "?")), + 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)) - ) + field('value', $.expression), + '.', + field('field', choice($._field_identifier, $.numeric_literal)), + ), ), // section delimited by `{` and `{` - block: ($) => seq("{", repeat($._statement), optional($.expression), "}"), + 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)) - ) + 'if', + field('condition', $._condition), + field('consequence', $.block), + optional(field('alternative', $.else_clause)), + ), ), // for example in if a == b { () } else { () } it would be `a == b` @@ -925,21 +874,21 @@ module.exports = grammar({ // 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)) + '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)), + 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)), + seq('match', field('value', $.expression), field('body', $.match_block)), // { // Option::Some(a) => a, @@ -947,11 +896,11 @@ module.exports = grammar({ // } match_block: ($) => seq( - "{", + '{', optional( - seq(repeat($.match_arm), alias($.last_match_arm, $.match_arm)) + seq(repeat($.match_arm), alias($.last_match_arm, $.match_arm)), ), - "}" + '}', ), // Option::Some(a) => a, // and @@ -960,13 +909,13 @@ module.exports = grammar({ prec.right( seq( repeat(choice($.attribute_item, $.inner_attribute_item)), - field("pattern", $.match_pattern), - "=>", + field('pattern', $.match_pattern), + '=>', choice( - seq(field("value", $.expression), ","), - field("value", prec(1, $._expression_ending_with_block)) - ) - ) + seq(field('value', $.expression), ','), + field('value', prec(1, $._expression_ending_with_block)), + ), + ), ), // for example in // match u256_guarantee_inv_mod_n(a, n) { @@ -977,27 +926,27 @@ module.exports = grammar({ last_match_arm: ($) => seq( repeat(choice($.attribute_item, $.inner_attribute_item)), - field("pattern", $.match_pattern), - "=>", - field("value", $.expression), - optional(",") + field('pattern', $.match_pattern), + '=>', + field('value', $.expression), + optional(','), ), // Option::Some(1) tuple_enum_pattern: ($) => seq( field( - "type", + 'type', choice( $.identifier, $.scoped_identifier, - alias($.generic_type_with_turbofish, $.generic_type) - ) + alias($.generic_type_with_turbofish, $.generic_type), + ), ), - "(", - sepBy(",", $._pattern), - optional(","), - ")" + '(', + sepBy(',', $._pattern), + optional(','), + ')', ), // for example in match opt { // Option::Some(a) => a, @@ -1005,27 +954,27 @@ module.exports = grammar({ // } // it would be `Option::Some(a)` and `Option::None` match_pattern: ($) => - seq($._pattern, optional(seq("if", field("condition", $._condition)))), + seq($._pattern, optional(seq('if', field('condition', $._condition)))), // while a != b {} while_expression: ($) => - seq("while", field("condition", $._condition), field("body", $.block)), + seq('while', field('condition', $._condition), field('body', $.block)), // loop {} - loop_expression: ($) => seq("loop", field("body", $.block)), + 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("*", "/", "%")], + [PREC.and, '&&'], + [PREC.or, '||'], + [PREC.bitand, '&'], + [PREC.bitor, '|'], + [PREC.bitxor, '^'], + [PREC.comparative, choice('==', '!=', '<', '<=', '>', '>=')], + [PREC.shift, choice('<<', '>>')], + [PREC.additive, choice('+', '-')], + [PREC.multiplicative, choice('*', '/', '%')], ]; // @ts-ignore @@ -1034,43 +983,43 @@ module.exports = grammar({ prec.left( precedence, seq( - field("left", $.expression), + field('left', $.expression), // @ts-ignore - field("operator", operator), - field("right", $.expression) - ) - ) - ) + field('operator', operator), + field('right', $.expression), + ), + ), + ), ); }, // @Array - snapshot_type: ($) => seq("@", field("type", $._type)), + snapshot_type: ($) => seq('@', field('type', $._type)), // foo() call_expression: ($) => prec( PREC.call, - seq(field("function", $.expression), field("arguments", $.arguments)) + 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)) + ',', + seq(repeat($.attribute_item), choice($.expression, $.named_argument)), ), - optional(","), - ")" + optional(','), + ')', ), // for example in foo(bar: a, :b, :c) it would be `bar: a` and `:b` and `c` - named_argument: ($) => seq(optional($.identifier), ":", $.expression), + 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)) + seq('ref', optional($.mutable_specifier), field('value', $.expression)), ), // Helper alias @@ -1083,21 +1032,21 @@ module.exports = grammar({ prec( 20, seq( - "pub", - optional(seq("(", choice($.super, $.crate, seq("in", $._path)), ")")) - ) + '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), + 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("///", /.*/)), + line_comment: ($) => token(seq('//', /.*/)), + doc_comment: ($) => token(seq('///', /.*/)), _field_identifier: ($) => alias($.identifier, $.field_identifier), }, diff --git a/package-lock.json b/package-lock.json index 747ac13..573cfdf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,24 +1,1365 @@ { "name": "tree-sitter-cairo", - "version": "1.0.0", + "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tree-sitter-cairo", - "version": "1.0.0", + "version": "0.0.1", + "hasInstallScript": true, "license": "MIT", "dependencies": { - "nan": "^2.19.0" + "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/nan": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz", - "integrity": "sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==" + "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", @@ -29,6 +1370,96 @@ "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 index dcaaf36..02ce223 100644 --- a/package.json +++ b/package.json @@ -41,17 +41,66 @@ } }, "devDependencies": { - "tree-sitter-cli": "^0.22.6", - "prebuildify": "^6.0.0" + "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" + "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/queries/indents.scm b/queries/indents.scm index 0ff24ca..35c1624 100644 --- a/queries/indents.scm +++ b/queries/indents.scm @@ -18,8 +18,6 @@ (array_expression) (token_tree) - (token_tree_pattern) - (token_repetition) ] @indent [ From 478436bbf94dbfd5811794c8fd04f8fecd8fef24 Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 10 Jun 2024 14:59:11 +0200 Subject: [PATCH 3/4] add A { b, ..c } --- grammar.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/grammar.js b/grammar.js index 74a39c4..4dd47d3 100644 --- a/grammar.js +++ b/grammar.js @@ -14,7 +14,7 @@ const PREC = { or: 2, assign: 0, }; -const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = ['+', '-', '*', '/', '%', '^', '!', '~', '&', '|', '&&', '||', '<<', '>>', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '=', '==', '!=', '>', '<', '>=', '<=', '@', '_', '.', ',', ';', ':', '::', '->', '=>', '#', '?', +const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = ['+', '-', '*', '/', '%', '^', '!', '~', '&', '|', '&&', '||', '<<', '>>', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '=', '==', '!=', '>', '<', '>=', '<=', '@', '..', '_', '.', ',', ';', ':', '::', '->', '=>', '#', '?', ]; const integerTypes = ['u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'u128', 'i128', 'usize', @@ -560,7 +560,7 @@ module.exports = grammar({ field_initializer_list: ($) => seq( '{', - sepBy(',', choice($.shorthand_field_initializer, $.field_initializer)), + sepBy(',', choice($.shorthand_field_initializer, $.field_initializer, base_field_initializer)), optional(','), '}', ), @@ -577,6 +577,8 @@ module.exports = grammar({ 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)), From 601d34575b638792914c9f9aa8b8b5b9962b92bf Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 10 Jun 2024 15:12:34 +0200 Subject: [PATCH 4/4] try fix numeric literal --- .github/workflows/ci.yml | 1 + grammar.js | 8 +- src/grammar.json | 164 +- src/node-types.json | 23 + src/parser.c | 65332 +++++++++++++++++++------------------ 5 files changed, 33054 insertions(+), 32474 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fffeee..4f660e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,3 +47,4 @@ jobs: 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/grammar.js b/grammar.js index 4dd47d3..25f6eb7 100644 --- a/grammar.js +++ b/grammar.js @@ -560,7 +560,7 @@ module.exports = grammar({ field_initializer_list: ($) => seq( '{', - sepBy(',', choice($.shorthand_field_initializer, $.field_initializer, base_field_initializer)), + sepBy(',', choice($.shorthand_field_initializer, $.field_initializer, $.base_field_initializer)), optional(','), '}', ), @@ -577,7 +577,7 @@ module.exports = grammar({ field('value', $.expression), ), - base_field_initializer: ($) => seq('..', $._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)), @@ -620,8 +620,8 @@ module.exports = grammar({ numeric_literal: (_) => token( seq( - choice(/[0-9]+/, /0x[0-9a-fA-F]+/, /0b[01]+/, /0o[0-7]+/), - optional(seq('_', choice(...integerTypes, 'u256', 'felt252'))), + choice(/[0-9_]+/, /0x[0-9a-fA-F_]+/, /0b[01_]+/, /0o[0-7_]+/), + optional(token.immediate(seq('_', choice(...integerTypes, 'u256', 'felt252')))), ), ), diff --git a/src/grammar.json b/src/grammar.json index 06f448a..16fbb79 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2551,6 +2551,10 @@ "type": "STRING", "value": "@" }, + { + "type": "STRING", + "value": ".." + }, { "type": "STRING", "value": "_" @@ -3078,6 +3082,10 @@ { "type": "SYMBOL", "name": "field_initializer" + }, + { + "type": "SYMBOL", + "name": "base_field_initializer" } ] }, @@ -3100,6 +3108,10 @@ { "type": "SYMBOL", "name": "field_initializer" + }, + { + "type": "SYMBOL", + "name": "base_field_initializer" } ] } @@ -3188,6 +3200,19 @@ } ] }, + "base_field_initializer": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, "mut_pattern": { "type": "PREC", "value": -1, @@ -3321,19 +3346,19 @@ "members": [ { "type": "PATTERN", - "value": "[0-9]+" + "value": "[0-9_]+" }, { "type": "PATTERN", - "value": "0x[0-9a-fA-F]+" + "value": "0x[0-9a-fA-F_]+" }, { "type": "PATTERN", - "value": "0b[01]+" + "value": "0b[01_]+" }, { "type": "PATTERN", - "value": "0o[0-7]+" + "value": "0o[0-7_]+" } ] }, @@ -3341,70 +3366,73 @@ "type": "CHOICE", "members": [ { - "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": "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" diff --git a/src/node-types.json b/src/node-types.json index 0a6330e..ee785d3 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -525,6 +525,21 @@ ] } }, + { + "type": "base_field_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, { "type": "binary_expression", "named": true, @@ -1229,6 +1244,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "base_field_initializer", + "named": true + }, { "type": "field_initializer", "named": true @@ -2978,6 +2997,10 @@ "type": ".", "named": false }, + { + "type": "..", + "named": false + }, { "type": "/", "named": false diff --git a/src/parser.c b/src/parser.c index 6c8b6fe..ce3d3ae 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1631 -#define LARGE_STATE_COUNT 220 -#define SYMBOL_COUNT 229 +#define STATE_COUNT 1633 +#define LARGE_STATE_COUNT 221 +#define SYMBOL_COUNT 231 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 103 +#define TOKEN_COUNT 104 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -94,168 +94,170 @@ enum ts_symbol_identifiers { anon_sym_GT_EQ = 68, anon_sym_LT_EQ = 69, anon_sym_AT = 70, - anon_sym_DOT = 71, - anon_sym_EQ_GT = 72, - anon_sym_QMARK = 73, - anon_sym_break = 74, - anon_sym_continue = 75, - anon_sym_default = 76, - anon_sym_if = 77, - anon_sym_extern = 78, - anon_sym_nopanic = 79, - anon_sym_loop = 80, - anon_sym_match = 81, - anon_sym_pub = 82, - anon_sym_return = 83, - anon_sym_static = 84, - anon_sym_while = 85, - sym_numeric_literal = 86, - aux_sym_string_literal_token1 = 87, - aux_sym_string_literal_token2 = 88, - anon_sym_DQUOTE = 89, - sym_shortstring_literal = 90, - anon_sym_true = 91, - anon_sym_false = 92, - anon_sym_DOLLAR = 93, - anon_sym_LT2 = 94, - anon_sym_else = 95, - anon_sym_ref = 96, - sym_identifier = 97, - anon_sym_in = 98, - sym_mutable_specifier = 99, - sym_super = 100, - sym_crate = 101, - sym_line_comment = 102, - sym_source_file = 103, - sym__statement = 104, - sym_declaration_list = 105, - sym_impl_item = 106, - sym_trait_item = 107, - sym_associated_type = 108, - sym_const_item = 109, - sym_macro_invocation = 110, - sym_empty_statement = 111, - sym_attribute_item = 112, - sym_inner_attribute_item = 113, - sym_attribute = 114, - sym_mod_item = 115, - sym_struct_item = 116, - sym_enum_item = 117, - sym_enum_variant_list = 118, - sym_enum_variant = 119, - sym_field_declaration_list = 120, - sym_field_declaration = 121, - sym_type_item = 122, - sym_extern_type = 123, - sym_external_function_item = 124, - sym_function_item = 125, - sym_function_signature_item = 126, - sym_function = 127, - sym_let_declaration = 128, - sym_use_declaration = 129, - sym__use_clause = 130, - sym_scoped_use_list = 131, - sym_use_list = 132, - sym_use_as_clause = 133, - sym_use_wildcard = 134, - sym_parameters = 135, - sym_parameter = 136, - sym__type = 137, - sym_type_parameters = 138, - sym_const_parameter = 139, - sym_constrained_type_parameter = 140, - sym_generic_type = 141, - sym_generic_type_with_turbofish = 142, - sym_array_type = 143, - sym_delim_token_tree = 144, - sym__delim_tokens = 145, - sym__pattern = 146, - sym_tuple_pattern = 147, - sym_slice_pattern = 148, - sym_struct_pattern = 149, - sym_field_pattern = 150, - sym_field_initializer_list = 151, - sym_shorthand_field_initializer = 152, - sym_field_initializer = 153, - sym_mut_pattern = 154, - sym_or_pattern = 155, - sym__literal = 156, - sym__literal_pattern = 157, - sym_negative_literal = 158, - sym_string_literal = 159, - sym_boolean_literal = 160, - sym__non_delim_token = 161, - sym_scoped_identifier = 162, - sym_scoped_type_identifier_in_expression_position = 163, - sym_scoped_type_identifier = 164, - sym_tuple_type = 165, - sym_unit_type = 166, - sym_type_arguments = 167, - sym_expression_statement = 168, - sym_expression = 169, - sym_generic_function = 170, - sym_tuple_expression = 171, - sym_return_expression = 172, - sym_struct_expression = 173, - sym_assignment_expression = 174, - sym_break_expression = 175, - sym_continue_expression = 176, - sym_index_expression = 177, - sym_array_expression = 178, - sym_parenthesized_expression = 179, - sym_unit_expression = 180, - sym_compound_assignment_expr = 181, - sym__expression_ending_with_block = 182, - sym_unary_expression = 183, - sym_try_expression = 184, - sym_field_expression = 185, - sym_block = 186, - sym_if_expression = 187, - sym__condition = 188, - sym_let_condition = 189, - sym_else_clause = 190, - sym_match_expression = 191, - sym_match_block = 192, - sym_match_arm = 193, - sym_last_match_arm = 194, - sym_tuple_enum_pattern = 195, - sym_match_pattern = 196, - sym_while_expression = 197, - sym_loop_expression = 198, - sym_binary_expression = 199, - sym_snapshot_type = 200, - sym_call_expression = 201, - sym_arguments = 202, - sym_named_argument = 203, - sym_reference_expression = 204, - sym_visibility_modifier = 205, - sym_extern = 206, - sym_nopanic = 207, - sym_ref_specifier = 208, - aux_sym_source_file_repeat1 = 209, - aux_sym_declaration_list_repeat1 = 210, - aux_sym_enum_variant_list_repeat1 = 211, - aux_sym_enum_variant_list_repeat2 = 212, - aux_sym_field_declaration_list_repeat1 = 213, - aux_sym_function_repeat1 = 214, - aux_sym_use_list_repeat1 = 215, - aux_sym_parameters_repeat1 = 216, - aux_sym_type_parameters_repeat1 = 217, - aux_sym_delim_token_tree_repeat1 = 218, - aux_sym__non_special_token_repeat1 = 219, - aux_sym_tuple_pattern_repeat1 = 220, - aux_sym_struct_pattern_repeat1 = 221, - aux_sym_field_initializer_list_repeat1 = 222, - aux_sym_type_arguments_repeat1 = 223, - aux_sym_tuple_expression_repeat1 = 224, - aux_sym_array_expression_repeat1 = 225, - aux_sym_match_block_repeat1 = 226, - aux_sym_match_arm_repeat1 = 227, - aux_sym_arguments_repeat1 = 228, - alias_sym_field_identifier = 229, - alias_sym_primitive_type = 230, - alias_sym_shorthand_field_identifier = 231, - alias_sym_type_identifier = 232, + 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[] = { @@ -330,6 +332,7 @@ static const char * const ts_symbol_names[] = { [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] = "\?", @@ -413,6 +416,7 @@ static const char * const ts_symbol_names[] = { [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", @@ -566,6 +570,7 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -649,6 +654,7 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -1015,6 +1021,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, [anon_sym_DOT] = { .visible = true, .named = false, @@ -1349,6 +1359,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_base_field_initializer] = { + .visible = true, + .named = true, + }, [sym_mut_pattern] = { .visible = true, .named = true, @@ -2318,45 +2332,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 3, [17] = 4, [18] = 4, - [19] = 13, - [20] = 4, + [19] = 4, + [20] = 13, [21] = 21, [22] = 22, [23] = 23, [24] = 24, - [25] = 25, + [25] = 24, [26] = 26, [27] = 27, - [28] = 25, + [28] = 28, [29] = 29, [30] = 27, - [31] = 27, - [32] = 32, - [33] = 25, - [34] = 26, - [35] = 29, - [36] = 32, - [37] = 24, + [31] = 28, + [32] = 27, + [33] = 29, + [34] = 34, + [35] = 24, + [36] = 26, + [37] = 28, [38] = 27, - [39] = 27, - [40] = 29, - [41] = 24, - [42] = 24, - [43] = 26, - [44] = 32, - [45] = 32, - [46] = 26, - [47] = 32, - [48] = 26, - [49] = 25, - [50] = 29, - [51] = 25, + [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] = 29, + [53] = 28, [54] = 21, - [55] = 22, + [55] = 23, [56] = 21, - [57] = 22, + [57] = 23, [58] = 58, [59] = 59, [60] = 60, @@ -2370,11 +2384,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [68] = 68, [69] = 69, [70] = 70, - [71] = 64, - [72] = 62, + [71] = 71, + [72] = 64, [73] = 73, [74] = 74, - [75] = 75, + [75] = 62, [76] = 76, [77] = 77, [78] = 78, @@ -2383,24 +2397,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [81] = 81, [82] = 82, [83] = 83, - [84] = 77, - [85] = 73, - [86] = 69, + [84] = 74, + [85] = 79, + [86] = 81, [87] = 87, [88] = 88, - [89] = 87, - [90] = 90, + [89] = 89, + [90] = 87, [91] = 91, [92] = 91, [93] = 93, - [94] = 94, - [95] = 88, - [96] = 94, + [94] = 88, + [95] = 95, + [96] = 95, [97] = 93, [98] = 98, [99] = 99, [100] = 100, - [101] = 100, + [101] = 99, [102] = 102, [103] = 103, [104] = 98, @@ -2412,31 +2426,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [110] = 110, [111] = 111, [112] = 112, - [113] = 112, - [114] = 114, - [115] = 114, - [116] = 111, - [117] = 110, + [113] = 113, + [114] = 110, + [115] = 113, + [116] = 112, + [117] = 111, [118] = 118, [119] = 118, [120] = 120, [121] = 121, - [122] = 122, + [122] = 118, [123] = 123, - [124] = 120, - [125] = 125, - [126] = 120, - [127] = 121, + [124] = 124, + [125] = 118, + [126] = 126, + [127] = 124, [128] = 121, - [129] = 120, + [129] = 121, [130] = 130, - [131] = 130, + [131] = 131, [132] = 132, - [133] = 133, - [134] = 134, - [135] = 132, - [136] = 134, - [137] = 133, + [133] = 131, + [134] = 132, + [135] = 135, + [136] = 130, + [137] = 135, [138] = 138, [139] = 139, [140] = 139, @@ -2446,117 +2460,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [144] = 144, [145] = 145, [146] = 146, - [147] = 147, + [147] = 143, [148] = 148, [149] = 149, - [150] = 150, + [150] = 142, [151] = 145, - [152] = 142, - [153] = 142, + [152] = 152, + [153] = 152, [154] = 154, [155] = 154, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, + [160] = 149, [161] = 161, [162] = 161, - [163] = 148, - [164] = 143, - [165] = 147, - [166] = 166, + [163] = 163, + [164] = 164, + [165] = 148, + [166] = 143, [167] = 146, [168] = 168, - [169] = 157, - [170] = 170, + [169] = 169, + [170] = 157, [171] = 171, [172] = 159, - [173] = 150, - [174] = 159, + [173] = 142, + [174] = 174, [175] = 168, [176] = 176, [177] = 177, - [178] = 178, - [179] = 156, + [178] = 144, + [179] = 179, [180] = 180, - [181] = 158, + [181] = 156, [182] = 149, [183] = 183, [184] = 184, [185] = 148, [186] = 186, - [187] = 187, + [187] = 168, [188] = 188, [189] = 189, - [190] = 186, - [191] = 168, - [192] = 176, + [190] = 171, + [191] = 186, + [192] = 183, [193] = 193, - [194] = 147, - [195] = 186, + [194] = 159, + [195] = 171, [196] = 196, - [197] = 187, - [198] = 198, + [197] = 197, + [198] = 184, [199] = 146, - [200] = 183, + [200] = 200, [201] = 157, - [202] = 183, - [203] = 144, + [202] = 202, + [203] = 177, [204] = 204, - [205] = 178, - [206] = 158, - [207] = 207, - [208] = 184, - [209] = 209, - [210] = 180, - [211] = 198, - [212] = 160, + [205] = 205, + [206] = 156, + [207] = 184, + [208] = 180, + [209] = 179, + [210] = 197, + [211] = 211, + [212] = 183, [213] = 213, - [214] = 176, + [214] = 158, [215] = 154, - [216] = 145, - [217] = 150, - [218] = 149, - [219] = 219, - [220] = 62, - [221] = 81, - [222] = 76, - [223] = 73, - [224] = 69, - [225] = 77, - [226] = 64, - [227] = 83, + [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] = 229, + [229] = 83, [230] = 230, [231] = 231, - [232] = 73, - [233] = 233, - [234] = 77, - [235] = 77, + [232] = 232, + [233] = 74, + [234] = 234, + [235] = 79, [236] = 236, - [237] = 69, - [238] = 73, - [239] = 233, - [240] = 240, - [241] = 231, - [242] = 69, - [243] = 75, - [244] = 244, - [245] = 73, - [246] = 69, - [247] = 77, - [248] = 82, - [249] = 249, - [250] = 74, - [251] = 70, - [252] = 68, - [253] = 79, - [254] = 254, - [255] = 78, + [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] = 257, + [257] = 78, [258] = 258, [259] = 259, [260] = 260, @@ -2638,72 +2652,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [336] = 336, [337] = 337, [338] = 338, - [339] = 336, - [340] = 336, - [341] = 341, + [339] = 337, + [340] = 340, + [341] = 337, [342] = 342, - [343] = 341, - [344] = 341, - [345] = 345, - [346] = 345, - [347] = 345, - [348] = 348, + [343] = 343, + [344] = 342, + [345] = 343, + [346] = 346, + [347] = 342, + [348] = 343, [349] = 349, [350] = 350, [351] = 351, [352] = 352, [353] = 353, - [354] = 351, - [355] = 355, - [356] = 355, - [357] = 353, - [358] = 352, - [359] = 359, + [354] = 354, + [355] = 352, + [356] = 356, + [357] = 354, + [358] = 353, + [359] = 356, [360] = 360, [361] = 361, - [362] = 360, + [362] = 362, [363] = 363, - [364] = 364, - [365] = 361, - [366] = 359, + [364] = 362, + [365] = 365, + [366] = 366, [367] = 367, - [368] = 368, - [369] = 364, - [370] = 368, - [371] = 371, - [372] = 371, - [373] = 363, - [374] = 367, - [375] = 375, + [368] = 366, + [369] = 369, + [370] = 360, + [371] = 361, + [372] = 363, + [373] = 365, + [374] = 369, + [375] = 367, [376] = 376, [377] = 377, - [378] = 375, - [379] = 376, + [378] = 378, + [379] = 378, [380] = 380, [381] = 381, [382] = 382, - [383] = 383, + [383] = 377, [384] = 384, - [385] = 377, - [386] = 384, + [385] = 385, + [386] = 386, [387] = 387, - [388] = 388, - [389] = 380, - [390] = 381, - [391] = 391, - [392] = 392, + [388] = 376, + [389] = 389, + [390] = 386, + [391] = 384, + [392] = 389, [393] = 393, - [394] = 393, - [395] = 393, - [396] = 396, - [397] = 396, - [398] = 396, - [399] = 399, - [400] = 399, + [394] = 394, + [395] = 395, + [396] = 395, + [397] = 395, + [398] = 394, + [399] = 394, + [400] = 320, [401] = 401, - [402] = 399, - [403] = 319, - [404] = 404, + [402] = 402, + [403] = 401, + [404] = 401, [405] = 405, [406] = 406, [407] = 407, @@ -2717,19 +2731,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [415] = 83, [416] = 416, [417] = 417, - [418] = 69, + [418] = 418, [419] = 419, [420] = 420, - [421] = 421, + [421] = 79, [422] = 422, [423] = 423, - [424] = 77, - [425] = 73, + [424] = 81, + [425] = 425, [426] = 426, [427] = 427, [428] = 428, [429] = 429, - [430] = 430, + [430] = 74, [431] = 431, [432] = 432, [433] = 433, @@ -2752,13 +2766,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [450] = 450, [451] = 451, [452] = 452, - [453] = 66, + [453] = 453, [454] = 454, [455] = 455, [456] = 456, [457] = 457, [458] = 458, - [459] = 459, + [459] = 66, [460] = 460, [461] = 461, [462] = 462, @@ -2772,130 +2786,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [470] = 470, [471] = 471, [472] = 472, - [473] = 473, + [473] = 60, [474] = 474, - [475] = 63, + [475] = 475, [476] = 476, [477] = 477, - [478] = 478, + [478] = 63, [479] = 479, - [480] = 60, + [480] = 480, [481] = 481, [482] = 482, [483] = 483, [484] = 484, [485] = 485, - [486] = 284, - [487] = 263, - [488] = 312, - [489] = 272, - [490] = 411, - [491] = 305, - [492] = 329, - [493] = 291, - [494] = 275, - [495] = 495, - [496] = 334, - [497] = 308, - [498] = 330, - [499] = 331, - [500] = 315, - [501] = 278, - [502] = 300, - [503] = 280, - [504] = 295, - [505] = 310, - [506] = 283, - [507] = 306, - [508] = 335, - [509] = 325, - [510] = 264, - [511] = 328, - [512] = 261, - [513] = 311, - [514] = 301, - [515] = 285, - [516] = 286, - [517] = 333, - [518] = 332, - [519] = 289, - [520] = 320, - [521] = 316, - [522] = 287, - [523] = 523, - [524] = 282, - [525] = 299, + [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] = 297, - [528] = 307, + [527] = 260, + [528] = 528, [529] = 298, - [530] = 293, - [531] = 269, - [532] = 322, - [533] = 258, - [534] = 495, - [535] = 317, - [536] = 294, - [537] = 279, - [538] = 268, - [539] = 314, - [540] = 313, + [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] = 319, - [543] = 543, - [544] = 321, - [545] = 318, - [546] = 296, - [547] = 543, - [548] = 302, - [549] = 292, - [550] = 257, - [551] = 288, - [552] = 277, - [553] = 276, - [554] = 274, - [555] = 323, - [556] = 273, - [557] = 271, - [558] = 270, - [559] = 267, - [560] = 326, - [561] = 327, - [562] = 281, - [563] = 290, - [564] = 260, - [565] = 304, - [566] = 303, + [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] = 266, - [569] = 262, - [570] = 570, - [571] = 416, + [568] = 292, + [569] = 266, + [570] = 267, + [571] = 408, [572] = 572, - [573] = 413, + [573] = 418, [574] = 574, [575] = 575, - [576] = 414, + [576] = 417, [577] = 577, - [578] = 574, - [579] = 411, - [580] = 577, - [581] = 581, + [578] = 416, + [579] = 579, + [580] = 580, + [581] = 577, [582] = 582, [583] = 583, [584] = 584, [585] = 585, [586] = 586, - [587] = 572, - [588] = 417, - [589] = 589, - [590] = 590, + [587] = 587, + [588] = 575, + [589] = 574, + [590] = 414, [591] = 591, - [592] = 428, + [592] = 592, [593] = 593, [594] = 594, - [595] = 428, - [596] = 596, + [595] = 595, + [596] = 422, [597] = 597, [598] = 598, [599] = 599, @@ -2905,278 +2919,278 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [603] = 603, [604] = 604, [605] = 605, - [606] = 591, + [606] = 606, [607] = 607, [608] = 608, [609] = 609, [610] = 610, - [611] = 611, - [612] = 594, - [613] = 436, - [614] = 614, - [615] = 417, - [616] = 616, - [617] = 405, - [618] = 618, + [611] = 593, + [612] = 612, + [613] = 595, + [614] = 432, + [615] = 615, + [616] = 414, + [617] = 617, + [618] = 407, [619] = 619, [620] = 620, [621] = 621, - [622] = 436, - [623] = 623, - [624] = 624, + [622] = 622, + [623] = 432, + [624] = 422, [625] = 625, - [626] = 598, + [626] = 626, [627] = 627, - [628] = 600, - [629] = 629, - [630] = 630, - [631] = 601, - [632] = 603, + [628] = 601, + [629] = 602, + [630] = 603, + [631] = 631, + [632] = 600, [633] = 633, - [634] = 624, - [635] = 598, + [634] = 634, + [635] = 635, [636] = 636, - [637] = 597, - [638] = 596, - [639] = 624, - [640] = 624, - [641] = 598, + [637] = 626, + [638] = 600, + [639] = 598, + [640] = 597, + [641] = 626, [642] = 83, - [643] = 624, - [644] = 435, - [645] = 431, - [646] = 621, - [647] = 618, - [648] = 648, - [649] = 616, - [650] = 624, - [651] = 598, - [652] = 624, - [653] = 653, - [654] = 654, - [655] = 625, - [656] = 598, - [657] = 657, - [658] = 658, - [659] = 659, + [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] = 408, - [663] = 406, - [664] = 664, - [665] = 412, + [662] = 662, + [663] = 663, + [664] = 411, + [665] = 409, [666] = 666, - [667] = 667, - [668] = 409, - [669] = 614, - [670] = 410, - [671] = 407, - [672] = 602, - [673] = 673, - [674] = 657, - [675] = 598, + [667] = 412, + [668] = 668, + [669] = 669, + [670] = 413, + [671] = 671, + [672] = 406, + [673] = 410, + [674] = 615, + [675] = 604, [676] = 676, - [677] = 677, - [678] = 594, - [679] = 624, - [680] = 625, - [681] = 623, - [682] = 682, - [683] = 414, - [684] = 598, - [685] = 413, - [686] = 636, - [687] = 610, - [688] = 607, - [689] = 416, - [690] = 666, - [691] = 691, - [692] = 319, - [693] = 468, - [694] = 694, - [695] = 695, - [696] = 470, - [697] = 427, - [698] = 463, - [699] = 319, - [700] = 431, - [701] = 473, - [702] = 702, - [703] = 435, - [704] = 472, - [705] = 433, + [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] = 707, - [708] = 479, - [709] = 483, - [710] = 461, - [711] = 460, - [712] = 69, - [713] = 458, + [707] = 428, + [708] = 451, + [709] = 320, + [710] = 419, + [711] = 436, + [712] = 712, + [713] = 434, [714] = 714, - [715] = 430, - [716] = 694, - [717] = 482, - [718] = 422, - [719] = 456, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 77, - [724] = 724, - [725] = 722, - [726] = 724, + [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] = 728, - [729] = 73, + [728] = 726, + [729] = 729, [730] = 730, - [731] = 437, + [731] = 727, [732] = 732, - [733] = 733, - [734] = 734, - [735] = 702, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 738, + [733] = 81, + [734] = 732, + [735] = 735, + [736] = 79, + [737] = 712, + [738] = 477, + [739] = 739, [740] = 740, - [741] = 429, - [742] = 727, - [743] = 426, - [744] = 293, - [745] = 458, - [746] = 460, - [747] = 732, - [748] = 740, - [749] = 721, - [750] = 461, - [751] = 483, - [752] = 479, - [753] = 437, - [754] = 473, - [755] = 482, - [756] = 470, - [757] = 468, - [758] = 463, - [759] = 759, - [760] = 730, - [761] = 456, - [762] = 728, - [763] = 419, - [764] = 737, - [765] = 472, - [766] = 66, - [767] = 82, - [768] = 452, - [769] = 78, - [770] = 455, - [771] = 79, - [772] = 447, - [773] = 440, - [774] = 68, - [775] = 444, - [776] = 474, - [777] = 80, - [778] = 469, - [779] = 74, - [780] = 476, - [781] = 445, - [782] = 462, - [783] = 783, - [784] = 451, - [785] = 439, - [786] = 484, - [787] = 438, - [788] = 457, + [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] = 478, - [791] = 464, - [792] = 477, - [793] = 449, - [794] = 466, - [795] = 481, - [796] = 443, - [797] = 75, - [798] = 454, - [799] = 441, - [800] = 465, + [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] = 442, - [803] = 471, - [804] = 446, - [805] = 60, - [806] = 806, - [807] = 459, - [808] = 63, - [809] = 448, - [810] = 450, - [811] = 485, - [812] = 812, - [813] = 813, + [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] = 815, + [816] = 816, [817] = 817, - [818] = 814, - [819] = 382, - [820] = 319, - [821] = 821, - [822] = 822, + [818] = 818, + [819] = 818, + [820] = 817, + [821] = 385, + [822] = 320, [823] = 823, - [824] = 822, - [825] = 823, - [826] = 823, - [827] = 823, - [828] = 823, - [829] = 823, - [830] = 823, - [831] = 822, - [832] = 823, - [833] = 833, - [834] = 833, + [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] = 836, + [836] = 835, [837] = 837, [838] = 838, [839] = 839, - [840] = 836, - [841] = 835, - [842] = 837, - [843] = 409, - [844] = 410, - [845] = 405, + [840] = 840, + [841] = 841, + [842] = 839, + [843] = 413, + [844] = 838, + [845] = 837, [846] = 407, - [847] = 838, - [848] = 848, - [849] = 62, + [847] = 840, + [848] = 410, + [849] = 406, [850] = 850, - [851] = 64, - [852] = 81, - [853] = 853, - [854] = 854, - [855] = 850, - [856] = 76, - [857] = 857, - [858] = 837, + [851] = 62, + [852] = 852, + [853] = 64, + [854] = 76, + [855] = 855, + [856] = 856, + [857] = 82, + [858] = 855, [859] = 859, - [860] = 860, - [861] = 835, - [862] = 838, + [860] = 837, + [861] = 861, + [862] = 862, [863] = 863, [864] = 864, - [865] = 836, + [865] = 865, [866] = 866, - [867] = 867, + [867] = 838, [868] = 868, [869] = 869, - [870] = 870, + [870] = 864, [871] = 871, - [872] = 872, - [873] = 873, + [872] = 839, + [873] = 840, [874] = 874, [875] = 875, [876] = 876, - [877] = 872, + [877] = 877, [878] = 878, [879] = 879, [880] = 880, @@ -3184,52 +3198,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [882] = 882, [883] = 883, [884] = 884, - [885] = 885, + [885] = 880, [886] = 886, - [887] = 876, + [887] = 878, [888] = 888, - [889] = 888, + [889] = 889, [890] = 890, - [891] = 890, - [892] = 839, - [893] = 893, - [894] = 872, + [891] = 891, + [892] = 891, + [893] = 889, + [894] = 894, [895] = 895, - [896] = 896, - [897] = 879, - [898] = 893, - [899] = 66, - [900] = 896, - [901] = 895, - [902] = 63, + [896] = 841, + [897] = 889, + [898] = 66, + [899] = 899, + [900] = 60, + [901] = 882, + [902] = 902, [903] = 903, - [904] = 67, - [905] = 905, + [904] = 903, + [905] = 899, [906] = 906, - [907] = 835, - [908] = 908, + [907] = 906, + [908] = 61, [909] = 909, [910] = 910, - [911] = 911, + [911] = 902, [912] = 912, [913] = 913, [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 836, - [919] = 837, - [920] = 920, - [921] = 921, - [922] = 838, + [918] = 918, + [919] = 919, + [920] = 913, + [921] = 839, + [922] = 922, [923] = 923, - [924] = 924, - [925] = 917, - [926] = 926, + [924] = 838, + [925] = 925, + [926] = 840, [927] = 927, [928] = 928, [929] = 929, - [930] = 930, + [930] = 837, [931] = 931, [932] = 932, [933] = 933, @@ -3237,111 +3251,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [935] = 935, [936] = 936, [937] = 937, - [938] = 923, + [938] = 919, [939] = 939, [940] = 940, - [941] = 928, - [942] = 910, - [943] = 943, + [941] = 941, + [942] = 942, + [943] = 936, [944] = 944, [945] = 945, [946] = 946, - [947] = 926, - [948] = 879, - [949] = 949, + [947] = 947, + [948] = 928, + [949] = 882, [950] = 950, [951] = 951, [952] = 952, - [953] = 944, + [953] = 953, [954] = 954, [955] = 955, - [956] = 854, + [956] = 956, [957] = 957, [958] = 958, - [959] = 959, - [960] = 960, + [959] = 852, + [960] = 852, [961] = 961, - [962] = 854, + [962] = 852, [963] = 963, - [964] = 955, - [965] = 854, + [964] = 964, + [965] = 965, [966] = 966, [967] = 967, [968] = 968, [969] = 969, - [970] = 407, - [971] = 410, - [972] = 886, + [970] = 970, + [971] = 961, + [972] = 413, [973] = 973, - [974] = 974, + [974] = 866, [975] = 975, [976] = 976, - [977] = 977, - [978] = 870, - [979] = 409, + [977] = 866, + [978] = 978, + [979] = 979, [980] = 980, - [981] = 870, - [982] = 982, - [983] = 854, - [984] = 984, + [981] = 981, + [982] = 407, + [983] = 406, + [984] = 894, [985] = 985, [986] = 986, - [987] = 870, - [988] = 988, - [989] = 405, - [990] = 990, + [987] = 410, + [988] = 866, + [989] = 989, + [990] = 852, [991] = 991, [992] = 992, [993] = 993, - [994] = 382, - [995] = 995, + [994] = 994, + [995] = 385, [996] = 996, [997] = 997, [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 1001, + [1001] = 996, [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 870, + [1007] = 999, [1008] = 1008, - [1009] = 382, + [1009] = 1009, [1010] = 1010, - [1011] = 992, + [1011] = 1011, [1012] = 1012, - [1013] = 993, - [1014] = 1012, - [1015] = 1015, - [1016] = 1016, + [1013] = 866, + [1014] = 1014, + [1015] = 385, + [1016] = 994, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 408, - [1021] = 1021, - [1022] = 1022, + [1020] = 1020, + [1021] = 1009, + [1022] = 411, [1023] = 1023, [1024] = 1024, - [1025] = 1002, + [1025] = 1025, [1026] = 1026, - [1027] = 1008, - [1028] = 1028, + [1027] = 1027, + [1028] = 1027, [1029] = 1029, [1030] = 1030, - [1031] = 1010, + [1031] = 1019, [1032] = 1032, - [1033] = 412, + [1033] = 1033, [1034] = 1034, - [1035] = 1035, + [1035] = 1018, [1036] = 1036, - [1037] = 406, + [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 1029, - [1041] = 1041, - [1042] = 1042, + [1040] = 1040, + [1041] = 409, + [1042] = 412, [1043] = 1043, [1044] = 1044, [1045] = 1045, @@ -3350,181 +3364,181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1051, - [1052] = 1048, - [1053] = 1053, + [1051] = 1044, + [1052] = 1052, + [1053] = 1049, [1054] = 1054, [1055] = 1055, - [1056] = 1051, - [1057] = 1057, - [1058] = 1057, - [1059] = 1059, + [1056] = 1056, + [1057] = 1054, + [1058] = 1058, + [1059] = 1058, [1060] = 1060, - [1061] = 1051, - [1062] = 1053, - [1063] = 1063, + [1061] = 1061, + [1062] = 1054, + [1063] = 1061, [1064] = 1064, [1065] = 1065, - [1066] = 1060, + [1066] = 1066, [1067] = 1067, - [1068] = 1053, - [1069] = 1067, - [1070] = 1070, + [1068] = 1068, + [1069] = 1061, + [1070] = 1067, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1041, - [1075] = 1064, - [1076] = 1076, + [1074] = 1074, + [1075] = 1043, + [1076] = 1065, [1077] = 1077, - [1078] = 1060, - [1079] = 1073, - [1080] = 1080, - [1081] = 1081, - [1082] = 1067, + [1078] = 1078, + [1079] = 1068, + [1080] = 1067, + [1081] = 1074, + [1082] = 1082, [1083] = 1083, - [1084] = 1077, - [1085] = 1049, - [1086] = 1086, + [1084] = 1068, + [1085] = 1085, + [1086] = 1078, [1087] = 1087, - [1088] = 1088, - [1089] = 1070, - [1090] = 1043, - [1091] = 1091, - [1092] = 1050, - [1093] = 1042, - [1094] = 1087, - [1095] = 1042, - [1096] = 1091, - [1097] = 1086, - [1098] = 1083, - [1099] = 1099, - [1100] = 903, + [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] = 1067, - [1103] = 1060, - [1104] = 1104, - [1105] = 1043, - [1106] = 1101, - [1107] = 1107, - [1108] = 1053, - [1109] = 1088, - [1110] = 1043, - [1111] = 1091, - [1112] = 1087, - [1113] = 1067, - [1114] = 1060, - [1115] = 1053, - [1116] = 1063, - [1117] = 1067, - [1118] = 1065, - [1119] = 1119, - [1120] = 1055, - [1121] = 1076, - [1122] = 1060, - [1123] = 1053, - [1124] = 1045, - [1125] = 1054, - [1126] = 1067, - [1127] = 1099, - [1128] = 1060, - [1129] = 1053, - [1130] = 1047, - [1131] = 1083, - [1132] = 1086, - [1133] = 1059, + [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] = 1135, + [1135] = 1089, [1136] = 1136, - [1137] = 1091, - [1138] = 1050, - [1139] = 993, - [1140] = 1081, - [1141] = 952, - [1142] = 1142, - [1143] = 1143, - [1144] = 319, + [1137] = 1093, + [1138] = 1083, + [1139] = 1139, + [1140] = 1095, + [1141] = 1018, + [1142] = 1060, + [1143] = 954, + [1144] = 1144, [1145] = 1145, - [1146] = 1081, - [1147] = 1147, - [1148] = 1148, + [1146] = 1146, + [1147] = 320, + [1148] = 1083, [1149] = 1149, [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 1055, + [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 1156, - [1157] = 1157, + [1156] = 1056, + [1157] = 1145, [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 63, + [1161] = 1161, [1162] = 1162, - [1163] = 1163, + [1163] = 60, [1164] = 1164, - [1165] = 81, - [1166] = 1143, - [1167] = 951, - [1168] = 66, - [1169] = 76, - [1170] = 939, - [1171] = 905, - [1172] = 1172, - [1173] = 1173, - [1174] = 1150, - [1175] = 931, - [1176] = 924, - [1177] = 1177, - [1178] = 1178, + [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] = 62, - [1185] = 64, - [1186] = 1186, - [1187] = 1187, - [1188] = 933, - [1189] = 319, - [1190] = 1190, - [1191] = 1191, + [1184] = 945, + [1185] = 1185, + [1186] = 62, + [1187] = 64, + [1188] = 1188, + [1189] = 1189, + [1190] = 946, + [1191] = 320, [1192] = 1192, - [1193] = 935, - [1194] = 1194, - [1195] = 915, - [1196] = 1178, - [1197] = 1197, - [1198] = 995, + [1193] = 1193, + [1194] = 941, + [1195] = 939, + [1196] = 1196, + [1197] = 934, + [1198] = 1179, [1199] = 1199, - [1200] = 1200, + [1200] = 997, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1158, + [1206] = 1206, [1207] = 1207, - [1208] = 1172, + [1208] = 1161, [1209] = 1209, - [1210] = 67, - [1211] = 950, - [1212] = 1151, - [1213] = 1213, - [1214] = 1214, + [1210] = 1174, + [1211] = 1211, + [1212] = 61, + [1213] = 950, + [1214] = 1153, [1215] = 1215, - [1216] = 920, + [1216] = 1216, [1217] = 1217, - [1218] = 1218, + [1218] = 933, [1219] = 1219, [1220] = 1220, - [1221] = 912, - [1222] = 934, - [1223] = 1215, - [1224] = 1224, - [1225] = 936, + [1221] = 1221, + [1222] = 1222, + [1223] = 929, + [1224] = 953, + [1225] = 1217, [1226] = 1226, [1227] = 1227, [1228] = 1228, @@ -3533,107 +3547,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 908, + [1234] = 1234, [1235] = 1235, - [1236] = 1236, + [1236] = 927, [1237] = 1237, [1238] = 1238, - [1239] = 906, - [1240] = 1154, - [1241] = 909, - [1242] = 1183, - [1243] = 911, - [1244] = 949, - [1245] = 1245, - [1246] = 1158, - [1247] = 1197, - [1248] = 945, - [1249] = 1207, - [1250] = 943, - [1251] = 1204, - [1252] = 940, - [1253] = 1253, - [1254] = 1254, - [1255] = 1209, + [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] = 1257, - [1258] = 1205, + [1257] = 1211, + [1258] = 1258, [1259] = 1259, [1260] = 1260, [1261] = 1261, [1262] = 1262, - [1263] = 913, + [1263] = 1263, [1264] = 1264, - [1265] = 914, + [1265] = 912, [1266] = 1266, [1267] = 916, [1268] = 1268, - [1269] = 921, - [1270] = 929, - [1271] = 1271, - [1272] = 1272, - [1273] = 930, + [1269] = 918, + [1270] = 1270, + [1271] = 923, + [1272] = 931, + [1273] = 1273, [1274] = 1274, - [1275] = 1275, - [1276] = 1164, - [1277] = 1163, - [1278] = 1278, - [1279] = 1279, - [1280] = 1145, + [1275] = 932, + [1276] = 1276, + [1277] = 1277, + [1278] = 1169, + [1279] = 1166, + [1280] = 1280, [1281] = 1281, - [1282] = 1282, - [1283] = 1177, - [1284] = 1201, - [1285] = 1285, + [1282] = 1149, + [1283] = 1283, + [1284] = 1284, + [1285] = 1176, [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, [1290] = 1290, - [1291] = 1181, - [1292] = 1275, - [1293] = 1293, - [1294] = 1187, - [1295] = 1253, - [1296] = 1296, - [1297] = 1172, + [1291] = 1291, + [1292] = 1292, + [1293] = 1180, + [1294] = 1277, + [1295] = 1295, + [1296] = 1183, + [1297] = 1255, [1298] = 1298, - [1299] = 1296, - [1300] = 1289, - [1301] = 1287, - [1302] = 1302, - [1303] = 1190, - [1304] = 1304, - [1305] = 1186, - [1306] = 1179, - [1307] = 1307, + [1299] = 1174, + [1300] = 1300, + [1301] = 1298, + [1302] = 1291, + [1303] = 1289, + [1304] = 1192, + [1305] = 1305, + [1306] = 1188, + [1307] = 1181, [1308] = 1308, - [1309] = 1155, - [1310] = 1285, - [1311] = 1152, - [1312] = 1151, - [1313] = 1173, - [1314] = 1314, - [1315] = 1304, - [1316] = 1194, - [1317] = 1272, - [1318] = 1281, - [1319] = 1319, - [1320] = 932, - [1321] = 937, - [1322] = 1322, - [1323] = 1227, - [1324] = 1231, - [1325] = 1268, - [1326] = 1232, - [1327] = 1233, + [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] = 1142, - [1330] = 1262, - [1331] = 1266, - [1332] = 1282, - [1333] = 1333, - [1334] = 1334, + [1329] = 1237, + [1330] = 1144, + [1331] = 1264, + [1332] = 1268, + [1333] = 1284, + [1334] = 1286, [1335] = 1335, [1336] = 1336, [1337] = 1337, @@ -3641,10 +3655,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1337, - [1343] = 1337, - [1344] = 1344, - [1345] = 1345, + [1342] = 1342, + [1343] = 1343, + [1344] = 1337, + [1345] = 1337, [1346] = 1346, [1347] = 1347, [1348] = 1348, @@ -3659,41 +3673,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1357] = 1357, [1358] = 1358, [1359] = 1359, - [1360] = 867, + [1360] = 1360, [1361] = 1361, [1362] = 1362, - [1363] = 60, - [1364] = 1362, - [1365] = 1365, - [1366] = 1366, + [1363] = 1363, + [1364] = 1364, + [1365] = 863, + [1366] = 1364, [1367] = 1367, [1368] = 1368, [1369] = 1369, [1370] = 1370, - [1371] = 1345, - [1372] = 1338, - [1373] = 1336, - [1374] = 1333, - [1375] = 1375, - [1376] = 1376, - [1377] = 1355, - [1378] = 1335, - [1379] = 1339, - [1380] = 1380, - [1381] = 1381, + [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] = 1384, + [1384] = 1369, [1385] = 1385, [1386] = 1386, - [1387] = 1351, - [1388] = 1334, - [1389] = 1389, - [1390] = 1389, + [1387] = 1387, + [1388] = 1388, + [1389] = 1353, + [1390] = 1336, [1391] = 1391, - [1392] = 1392, + [1392] = 1391, [1393] = 1393, - [1394] = 1367, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, @@ -3701,74 +3715,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1399] = 1399, [1400] = 1400, [1401] = 1401, - [1402] = 1362, + [1402] = 1402, [1403] = 1403, - [1404] = 1359, + [1404] = 1364, [1405] = 1405, - [1406] = 1393, - [1407] = 1349, - [1408] = 1354, - [1409] = 1391, - [1410] = 1410, - [1411] = 1380, + [1406] = 1361, + [1407] = 1407, + [1408] = 1395, + [1409] = 1351, + [1410] = 1356, + [1411] = 1393, [1412] = 1412, - [1413] = 1413, + [1413] = 1382, [1414] = 1414, [1415] = 1415, [1416] = 1416, - [1417] = 1414, + [1417] = 1417, [1418] = 1418, - [1419] = 1419, - [1420] = 1415, - [1421] = 1410, - [1422] = 1412, - [1423] = 1423, - [1424] = 1424, - [1425] = 1391, + [1419] = 1416, + [1420] = 1420, + [1421] = 1421, + [1422] = 1417, + [1423] = 1412, + [1424] = 1414, + [1425] = 1425, [1426] = 1426, - [1427] = 1412, - [1428] = 1389, - [1429] = 1380, - [1430] = 1430, - [1431] = 1431, - [1432] = 1415, - [1433] = 1414, - [1434] = 1434, - [1435] = 1435, - [1436] = 1381, + [1427] = 1393, + [1428] = 1428, + [1429] = 1414, + [1430] = 1391, + [1431] = 1382, + [1432] = 1432, + [1433] = 1433, + [1434] = 1417, + [1435] = 1416, + [1436] = 1436, [1437] = 1437, - [1438] = 1395, + [1438] = 1438, [1439] = 1439, - [1440] = 1410, + [1440] = 1397, [1441] = 1441, - [1442] = 1442, + [1442] = 1412, [1443] = 1443, - [1444] = 1389, - [1445] = 1391, - [1446] = 1380, - [1447] = 1369, - [1448] = 1405, - [1449] = 1380, - [1450] = 1354, - [1451] = 1415, - [1452] = 1375, - [1453] = 1453, - [1454] = 1389, - [1455] = 1391, + [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] = 1457, - [1458] = 1349, - [1459] = 1389, - [1460] = 1460, - [1461] = 1361, + [1457] = 1393, + [1458] = 1393, + [1459] = 1459, + [1460] = 1351, + [1461] = 1391, [1462] = 1462, - [1463] = 1463, - [1464] = 1439, - [1465] = 1401, - [1466] = 1341, - [1467] = 1380, - [1468] = 1468, - [1469] = 1469, + [1463] = 1363, + [1464] = 1464, + [1465] = 1465, + [1466] = 1441, + [1467] = 1403, + [1468] = 1343, + [1469] = 1382, [1470] = 1470, [1471] = 1471, [1472] = 1472, @@ -3776,37 +3790,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 1473, + [1477] = 1477, [1478] = 1478, - [1479] = 1479, + [1479] = 1475, [1480] = 1480, [1481] = 1481, - [1482] = 1473, + [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 1475, [1485] = 1485, [1486] = 1486, - [1487] = 1471, + [1487] = 1487, [1488] = 1488, - [1489] = 1489, - [1490] = 1473, + [1489] = 1473, + [1490] = 1490, [1491] = 1491, - [1492] = 1492, + [1492] = 1475, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1496, + [1496] = 1480, [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 1473, + [1500] = 1500, [1501] = 1501, - [1502] = 1471, - [1503] = 1470, - [1504] = 1504, - [1505] = 1473, + [1502] = 1475, + [1503] = 1503, + [1504] = 1473, + [1505] = 1472, [1506] = 1506, - [1507] = 1507, + [1507] = 1475, [1508] = 1508, [1509] = 1509, [1510] = 1510, @@ -3819,117 +3833,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1517, - [1521] = 1473, - [1522] = 1522, - [1523] = 873, + [1520] = 1520, + [1521] = 1521, + [1522] = 1519, + [1523] = 1475, [1524] = 1524, - [1525] = 1471, - [1526] = 1526, - [1527] = 1527, - [1528] = 1471, + [1525] = 1525, + [1526] = 1473, + [1527] = 879, + [1528] = 1528, [1529] = 1529, - [1530] = 1530, - [1531] = 1516, - [1532] = 1495, - [1533] = 1472, + [1530] = 1473, + [1531] = 1531, + [1532] = 1474, + [1533] = 1518, [1534] = 1534, - [1535] = 1485, - [1536] = 1468, - [1537] = 1481, - [1538] = 1480, - [1539] = 1539, - [1540] = 1540, + [1535] = 1498, + [1536] = 1475, + [1537] = 1487, + [1538] = 1470, + [1539] = 1483, + [1540] = 1482, [1541] = 1541, - [1542] = 1473, - [1543] = 1488, - [1544] = 1491, - [1545] = 1513, + [1542] = 1542, + [1543] = 1543, + [1544] = 1490, + [1545] = 1493, [1546] = 1546, - [1547] = 1527, - [1548] = 1522, - [1549] = 1541, - [1550] = 1515, - [1551] = 1551, - [1552] = 1552, - [1553] = 1496, + [1547] = 1515, + [1548] = 1548, + [1549] = 1529, + [1550] = 1524, + [1551] = 1543, + [1552] = 1517, + [1553] = 1553, [1554] = 1554, - [1555] = 1499, + [1555] = 1495, [1556] = 1556, - [1557] = 1557, - [1558] = 1554, + [1557] = 1494, + [1558] = 1558, [1559] = 1559, - [1560] = 1495, + [1560] = 1556, [1561] = 1561, - [1562] = 1562, - [1563] = 1498, + [1562] = 1498, + [1563] = 1563, [1564] = 1564, - [1565] = 1526, + [1565] = 1501, [1566] = 1566, - [1567] = 1567, + [1567] = 1528, [1568] = 1568, [1569] = 1569, [1570] = 1570, - [1571] = 1494, + [1571] = 1571, [1572] = 1572, - [1573] = 1569, + [1573] = 1573, [1574] = 1574, - [1575] = 1575, - [1576] = 1497, + [1575] = 1572, + [1576] = 1553, [1577] = 1577, [1578] = 1578, - [1579] = 1551, + [1579] = 1499, [1580] = 1580, - [1581] = 1529, + [1581] = 1581, [1582] = 1582, - [1583] = 1519, - [1584] = 1518, - [1585] = 1518, - [1586] = 1519, - [1587] = 1587, - [1588] = 1588, - [1589] = 1527, - [1590] = 1470, - [1591] = 1591, - [1592] = 1497, - [1593] = 1534, - [1594] = 1577, - [1595] = 1595, - [1596] = 1510, - [1597] = 1518, - [1598] = 1509, - [1599] = 1559, - [1600] = 1527, - [1601] = 1570, - [1602] = 1518, - [1603] = 1508, - [1604] = 1527, - [1605] = 1605, - [1606] = 1527, - [1607] = 1607, - [1608] = 1507, - [1609] = 1552, - [1610] = 881, - [1611] = 1567, - [1612] = 1566, - [1613] = 1564, - [1614] = 1506, - [1615] = 1478, - [1616] = 883, - [1617] = 1540, - [1618] = 1591, - [1619] = 1493, - [1620] = 1568, - [1621] = 1556, - [1622] = 1566, - [1623] = 1564, - [1624] = 1564, - [1625] = 1564, - [1626] = 1489, - [1627] = 1607, - [1628] = 1486, - [1629] = 1484, - [1630] = 1483, + [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) { @@ -3937,3790 +3953,4024 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(247); + if (eof) ADVANCE(248); ADVANCE_MAP( - '!', 266, - '"', 395, - '#', 267, - '$', 402, - '%', 331, - '&', 336, + '!', 267, + '"', 407, + '#', 268, + '$', 414, + '%', 332, + '&', 337, '\'', 24, - '(', 289, - ')', 292, - '*', 288, - '+', 326, - ',', 276, - '-', 329, - '.', 357, - '/', 330, - '0', 385, - ':', 261, - ';', 253, - '<', 403, - '=', 264, - '>', 324, - '?', 359, - '@', 356, - 'B', 204, - '[', 268, - ']', 269, - '^', 333, - '_', 290, - 'a', 177, + '(', 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', 121, - 'e', 147, - 'f', 92, - 'i', 61, - 'l', 122, - 'm', 97, - 'n', 162, - 'o', 128, - 'p', 198, - 'r', 108, - 's', 182, - 't', 171, - 'u', 62, - 'w', 133, - '{', 248, - '|', 338, - '}', 249, - '~', 334, + '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(243); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + lookahead == ' ') SKIP(244); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); END_STATE(); case 1: ADVANCE_MAP( - '!', 266, - '"', 390, - '#', 267, - '$', 402, - '%', 331, - '&', 336, + '!', 267, + '"', 402, + '#', 268, + '$', 414, + '%', 332, + '&', 337, '\'', 24, - '(', 289, - ')', 292, - '*', 288, - '+', 326, - ',', 276, - '-', 329, - '.', 357, - '/', 330, - '0', 385, - ':', 261, - ';', 253, - '<', 322, - '=', 264, - '>', 324, - '?', 359, - '@', 356, - 'B', 548, - '[', 268, - ']', 269, - '^', 333, - '_', 291, - 'b', 408, - 'c', 410, - 'd', 450, - 'e', 494, - 'f', 431, - 'i', 413, - 'l', 462, - 'm', 437, - 'n', 504, - 'p', 539, - 'r', 469, - 's', 531, - 't', 511, - 'u', 417, - 'w', 473, - '{', 248, - '|', 338, - '}', 249, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 2: ADVANCE_MAP( - '!', 266, - '"', 390, - '%', 331, - '&', 335, + '!', 267, + '"', 402, + '%', 332, + '&', 336, '\'', 24, - '(', 289, - ')', 292, - '*', 288, - '+', 326, - ',', 276, - '-', 328, - '.', 357, - '/', 330, - '0', 385, - ':', 261, - ';', 253, - '<', 322, - '=', 263, - '>', 324, - '?', 359, - '@', 356, - 'B', 548, - '[', 268, - ']', 269, - '^', 332, - 'b', 408, - 'c', 411, - 'd', 450, - 'f', 432, - 'i', 414, - 'l', 501, - 'm', 440, - 'r', 451, - 's', 541, - 't', 519, - 'u', 418, - 'w', 473, - '{', 248, - '|', 339, - '}', 249, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 3: ADVANCE_MAP( - '!', 266, - '"', 390, - '%', 331, - '&', 335, + '!', 267, + '"', 402, + '%', 332, + '&', 336, '\'', 24, - '(', 289, - '*', 288, - '+', 326, - '-', 328, - '.', 357, - '/', 330, - '0', 385, - ':', 87, - '<', 322, - '=', 264, - '>', 324, - '?', 359, - '@', 356, - 'B', 548, - '[', 268, - '^', 332, - 'b', 408, - 'c', 411, - 'd', 450, - 'f', 432, - 'i', 414, - 'l', 501, - 'm', 440, - 'r', 451, - 's', 541, - 't', 519, - 'u', 418, - 'w', 473, - '{', 248, - '|', 339, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 4: ADVANCE_MAP( - '!', 266, - '%', 331, - '&', 335, - '(', 289, - ')', 292, - '*', 288, - '+', 326, - ',', 276, - '-', 328, - '.', 357, - '/', 330, - ':', 87, - ';', 253, - '<', 322, - '=', 263, - '>', 324, - '?', 359, - '[', 268, - ']', 269, - '^', 332, - 'a', 177, - 'e', 146, - 'i', 156, - 'n', 162, - '{', 248, - '|', 339, - '}', 249, + '!', 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( - '!', 265, - '"', 390, - '#', 267, + '!', 266, + '"', 402, + '#', 268, '\'', 24, - '(', 289, - ')', 292, - '*', 287, - ',', 276, - '-', 327, - '/', 60, - '0', 385, - ':', 261, - ';', 253, - '<', 321, - '=', 262, - '@', 356, - 'B', 548, - '[', 268, - ']', 269, - 'b', 408, - 'c', 411, - 'd', 450, - 'f', 432, - 'i', 414, - 'l', 501, - 'm', 440, - 'r', 451, - 's', 541, - 't', 519, - 'u', 418, - 'w', 473, - '{', 248, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 6: ADVANCE_MAP( - '!', 265, - '"', 390, + '!', 266, + '"', 402, '\'', 24, - '(', 289, - '*', 287, - '-', 327, - '/', 60, - '0', 385, - ':', 87, - '@', 356, - 'B', 548, - '[', 268, - 'b', 408, - 'c', 411, - 'd', 450, - 'f', 432, - 'i', 414, - 'l', 462, - 'm', 440, - 'r', 451, - 's', 541, - 't', 519, - 'u', 418, - 'w', 473, - '{', 248, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 7: ADVANCE_MAP( - '!', 265, - '"', 390, + '!', 266, + '"', 402, '\'', 24, - '(', 289, - '*', 287, - '-', 327, - '/', 60, - '0', 385, - ':', 87, - '@', 356, - 'B', 548, - '[', 268, - 'b', 408, - 'c', 411, - 'd', 450, - 'f', 432, - 'i', 414, - 'l', 501, - 'm', 439, - 'r', 451, - 's', 541, - 't', 519, - 'u', 418, - 'w', 473, - '{', 248, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 8: ADVANCE_MAP( - '!', 265, - '(', 289, - ')', 292, - ',', 276, - '-', 89, - '/', 60, - ':', 261, - ';', 253, - '<', 403, - '=', 262, - '>', 323, - ']', 269, - 'i', 156, - 'n', 162, - 'o', 128, - '{', 248, - '|', 337, - '}', 249, + '!', 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( - '!', 265, - '(', 289, - ',', 276, - '/', 60, - ':', 87, - ';', 253, - '<', 403, - '=', 90, - ']', 269, - 'i', 127, - '{', 248, - '|', 337, + '!', 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( - '!', 88, - '"', 395, - '#', 267, - '%', 331, - '&', 335, - '(', 289, - '*', 288, - '+', 326, - '-', 328, - '.', 357, - '/', 330, - ':', 87, - ';', 253, - '<', 322, - '=', 264, - '>', 324, - '?', 359, - 'B', 548, - '[', 268, - '^', 332, - 'b', 499, - 'c', 505, - 'd', 450, - 'e', 494, - 'f', 465, - 'i', 415, - 'l', 463, - 'm', 500, - 'p', 539, - 's', 524, - 't', 518, - 'u', 417, - '|', 339, - '}', 249, + '!', 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 11: ADVANCE_MAP( - '!', 88, - '"', 390, - '#', 267, - '%', 331, - '&', 335, + '!', 90, + '"', 402, + '#', 268, + '%', 332, + '&', 336, '\'', 24, - '(', 289, - '*', 288, - '+', 326, - ',', 276, - '-', 328, - '.', 357, - '/', 330, - '0', 385, - ':', 87, - '<', 322, - '=', 263, - '>', 324, - '?', 359, - 'B', 548, - '[', 268, - '^', 332, - '_', 291, - 'b', 409, - 'c', 412, - 'd', 450, - 'e', 489, - 'f', 432, - 'i', 416, - 'm', 544, - 's', 541, - 't', 519, - 'u', 418, - '|', 339, - '}', 249, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 12: ADVANCE_MAP( - '!', 88, - '"', 390, - '#', 267, - '%', 331, - '&', 335, + '!', 90, + '"', 402, + '#', 268, + '%', 332, + '&', 336, '\'', 24, - '(', 289, - '*', 288, - '+', 326, - ',', 276, - '-', 328, - '.', 357, - '/', 330, - '0', 385, - ':', 87, - '<', 322, - '=', 263, - '>', 324, - '?', 359, - 'B', 548, - '[', 268, - '^', 332, - '_', 291, - 'b', 409, - 'c', 412, - 'd', 450, - 'f', 432, - 'i', 416, - 'm', 544, - 's', 541, - 't', 519, - 'u', 418, - '|', 339, - '}', 249, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 13: ADVANCE_MAP( - '!', 88, - '#', 267, - '%', 331, - '&', 335, - '(', 289, - '*', 288, - '+', 326, - '-', 328, - '.', 357, - '/', 330, - ':', 87, - ';', 253, - '<', 322, - '=', 264, - '>', 324, - '?', 359, - 'B', 548, - '[', 268, - '^', 332, - 'b', 499, - 'c', 505, - 'd', 450, - 'e', 494, - 'f', 465, - 'i', 415, - 'l', 463, - 'm', 500, - 'p', 539, - 's', 524, - 't', 518, - 'u', 417, - '|', 339, - '}', 249, + '!', 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 14: ADVANCE_MAP( - '!', 88, - '%', 331, - '&', 335, - '(', 289, - '*', 288, - '+', 326, - ',', 276, - '-', 328, - '.', 357, - '/', 330, - ':', 260, - '<', 322, - '=', 264, - '>', 324, - '?', 359, - '[', 268, - '^', 332, - 'e', 146, - '|', 339, - '}', 249, + '!', 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( - '"', 390, - '#', 267, + '"', 402, + '#', 268, '\'', 24, - '(', 289, - ')', 292, - ',', 276, - '-', 327, - '/', 60, - '0', 385, - ':', 87, - '@', 356, - 'B', 548, - '[', 268, - ']', 269, - '_', 291, - 'b', 409, - 'c', 412, - 'd', 450, - 'f', 432, - 'i', 416, - 'm', 544, - 's', 541, - 't', 519, - 'u', 418, - '|', 337, - '}', 249, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 16: ADVANCE_MAP( - '"', 390, - '#', 267, + '"', 402, + '#', 268, '\'', 24, - '(', 289, - ')', 292, - ',', 276, - '-', 327, - '/', 60, - '0', 385, - ':', 87, - '@', 356, - 'B', 548, - '[', 268, - '_', 291, - 'b', 409, - 'c', 412, - 'd', 450, - 'f', 432, - 'i', 416, - 'm', 544, - 'r', 464, - 's', 541, - 't', 519, - 'u', 418, - '|', 337, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 17: ADVANCE_MAP( - '"', 390, + '"', 402, '\'', 24, - '(', 289, - '-', 327, - '/', 60, - '0', 385, - ':', 87, - '>', 323, - '@', 356, - 'B', 548, - '[', 268, - 'b', 409, - 'c', 412, - 'd', 450, - 'f', 432, - 'i', 416, - 's', 541, - 't', 519, - 'u', 418, - '{', 248, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(390); - if (lookahead == 'o') ADVANCE(157); - if (lookahead == 'r') ADVANCE(100); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(158); + if (lookahead == 'r') ADVANCE(102); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(390); - if (lookahead == 'o') ADVANCE(163); - if (lookahead == 'r') ADVANCE(123); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(164); + if (lookahead == 'r') ADVANCE(125); END_STATE(); case 20: - if (lookahead == '#') ADVANCE(267); - if (lookahead == '(') ADVANCE(289); - if (lookahead == ',') ADVANCE(276); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '0') ADVANCE(385); - if (lookahead == '}') ADVANCE(249); + 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 21: - ADVANCE_MAP( - '#', 267, - '+', 325, - '-', 327, - '/', 60, - ':', 87, - '>', 323, - 'B', 548, - 'b', 499, - 'c', 505, - 'd', 450, - 'f', 466, - 'i', 415, - 's', 541, - 'u', 418, - ); + 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') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(267); - if (lookahead == ',') ADVANCE(276); - if (lookahead == '/') ADVANCE(60); - if (lookahead == 'p') ADVANCE(539); - if (lookahead == '}') ADVANCE(249); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 23: - if (lookahead == '\'') ADVANCE(397); + if (lookahead == '\'') ADVANCE(409); END_STATE(); case 24: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(242); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(243); if (lookahead != 0) ADVANCE(54); END_STATE(); case 25: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(214); if (lookahead != 0) ADVANCE(26); END_STATE(); case 26: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(211); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(212); if (lookahead != 0) ADVANCE(23); END_STATE(); case 27: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(214); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(215); if (lookahead != 0) ADVANCE(25); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(216); if (lookahead != 0) ADVANCE(27); END_STATE(); case 29: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(216); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(217); if (lookahead != 0) ADVANCE(28); END_STATE(); case 30: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(217); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(218); if (lookahead != 0) ADVANCE(29); END_STATE(); case 31: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(218); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(219); if (lookahead != 0) ADVANCE(30); END_STATE(); case 32: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(219); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(220); if (lookahead != 0) ADVANCE(31); END_STATE(); case 33: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(220); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(221); if (lookahead != 0) ADVANCE(32); END_STATE(); case 34: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(222); if (lookahead != 0) ADVANCE(33); END_STATE(); case 35: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(222); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(223); if (lookahead != 0) ADVANCE(34); END_STATE(); case 36: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(224); if (lookahead != 0) ADVANCE(35); END_STATE(); case 37: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(224); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(225); if (lookahead != 0) ADVANCE(36); END_STATE(); case 38: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(225); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(226); if (lookahead != 0) ADVANCE(37); END_STATE(); case 39: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(226); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(227); if (lookahead != 0) ADVANCE(38); END_STATE(); case 40: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(227); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(228); if (lookahead != 0) ADVANCE(39); END_STATE(); case 41: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(228); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(229); if (lookahead != 0) ADVANCE(40); END_STATE(); case 42: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(229); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(230); if (lookahead != 0) ADVANCE(41); END_STATE(); case 43: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(230); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(231); if (lookahead != 0) ADVANCE(42); END_STATE(); case 44: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(231); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(232); if (lookahead != 0) ADVANCE(43); END_STATE(); case 45: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(232); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(233); if (lookahead != 0) ADVANCE(44); END_STATE(); case 46: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(233); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(234); if (lookahead != 0) ADVANCE(45); END_STATE(); case 47: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(234); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(235); if (lookahead != 0) ADVANCE(46); END_STATE(); case 48: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(235); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(236); if (lookahead != 0) ADVANCE(47); END_STATE(); case 49: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(236); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(237); if (lookahead != 0) ADVANCE(48); END_STATE(); case 50: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(237); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(238); if (lookahead != 0) ADVANCE(49); END_STATE(); case 51: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(238); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(239); if (lookahead != 0) ADVANCE(50); END_STATE(); case 52: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(240); if (lookahead != 0) ADVANCE(51); END_STATE(); case 53: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(240); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(241); if (lookahead != 0) ADVANCE(52); END_STATE(); case 54: - if (lookahead == '\'') ADVANCE(397); - if (lookahead == '\\') ADVANCE(241); + if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\\') ADVANCE(242); if (lookahead != 0) ADVANCE(53); END_STATE(); case 55: ADVANCE_MAP( - '(', 289, - ')', 292, - '*', 287, - ',', 276, - '/', 60, - ':', 87, - '@', 356, - 'B', 548, - '[', 268, - 'b', 499, - 'd', 450, - 'f', 466, - 'i', 416, - 's', 541, - 'u', 418, - '{', 248, - '}', 249, + '(', 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 56: ADVANCE_MAP( - '(', 289, - '/', 60, - ':', 87, - ';', 253, - '@', 356, - 'B', 548, - '[', 268, - 'b', 499, - 'd', 450, - 'f', 466, - 'i', 416, - 'n', 504, - 's', 541, - 'u', 418, - '{', 248, + '(', 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 57: - ADVANCE_MAP( - ')', 292, - ',', 276, - '/', 60, - ':', 260, - ';', 253, - '<', 321, - '=', 262, - '>', 323, - ']', 269, - 'i', 156, - 'n', 162, - 'o', 128, - '{', 248, - '|', 337, - '}', 249, - ); + 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: - if (lookahead == '*') ADVANCE(287); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '<') ADVANCE(403); - if (lookahead == 's') ADVANCE(541); - if (lookahead == '{') ADVANCE(248); + 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); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); END_STATE(); case 59: - if (lookahead == ',') ADVANCE(276); - if (lookahead == '/') ADVANCE(60); - if (lookahead == 'm') ADVANCE(544); - if (lookahead == '}') ADVANCE(249); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 60: - if (lookahead == '/') ADVANCE(558); + 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 == '1') ADVANCE(65); - if (lookahead == '3') ADVANCE(66); - if (lookahead == '6') ADVANCE(76); - if (lookahead == '8') ADVANCE(295); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'm') ADVANCE(167); - if (lookahead == 'n') ADVANCE(552); + if (lookahead == '.') ADVANCE(358); END_STATE(); case 62: - if (lookahead == '1') ADVANCE(71); - if (lookahead == '3') ADVANCE(67); - if (lookahead == '6') ADVANCE(77); - if (lookahead == '8') ADVANCE(293); - if (lookahead == 's') ADVANCE(109); + if (lookahead == '/') ADVANCE(586); END_STATE(); case 63: - if (lookahead == '1') ADVANCE(73); - if (lookahead == '2') ADVANCE(79); + if (lookahead == '1') ADVANCE(67); if (lookahead == '3') ADVANCE(68); if (lookahead == '6') ADVANCE(78); - if (lookahead == '8') ADVANCE(384); - if (lookahead == 's') ADVANCE(142); + 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(68); - if (lookahead == '6') ADVANCE(78); - if (lookahead == '8') ADVANCE(384); + 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 == '2') ADVANCE(85); - if (lookahead == '6') ADVANCE(299); + 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 == '2') ADVANCE(303); + 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(301); + if (lookahead == '2') ADVANCE(87); + if (lookahead == '6') ADVANCE(300); END_STATE(); case 68: - if (lookahead == '2') ADVANCE(384); + if (lookahead == '2') ADVANCE(304); END_STATE(); case 69: - if (lookahead == '2') ADVANCE(319); + if (lookahead == '2') ADVANCE(302); END_STATE(); case 70: - if (lookahead == '2') ADVANCE(396); + if (lookahead == '2') ADVANCE(387); END_STATE(); case 71: - if (lookahead == '2') ADVANCE(86); - if (lookahead == '6') ADVANCE(297); + if (lookahead == '2') ADVANCE(320); END_STATE(); case 72: - if (lookahead == '2') ADVANCE(81); + if (lookahead == '2') ADVANCE(408); END_STATE(); case 73: - if (lookahead == '2') ADVANCE(84); - if (lookahead == '6') ADVANCE(384); + if (lookahead == '2') ADVANCE(88); + if (lookahead == '6') ADVANCE(298); END_STATE(); case 74: - if (lookahead == '2') ADVANCE(80); + if (lookahead == '2') ADVANCE(83); END_STATE(); case 75: - if (lookahead == '2') ADVANCE(82); + if (lookahead == '2') ADVANCE(86); + if (lookahead == '6') ADVANCE(387); END_STATE(); case 76: - if (lookahead == '4') ADVANCE(307); + if (lookahead == '2') ADVANCE(82); END_STATE(); case 77: - if (lookahead == '4') ADVANCE(305); + if (lookahead == '2') ADVANCE(84); END_STATE(); case 78: - if (lookahead == '4') ADVANCE(384); + if (lookahead == '4') ADVANCE(308); END_STATE(); case 79: - if (lookahead == '5') ADVANCE(83); + if (lookahead == '4') ADVANCE(306); END_STATE(); case 80: - if (lookahead == '5') ADVANCE(68); + if (lookahead == '4') ADVANCE(387); END_STATE(); case 81: - if (lookahead == '5') ADVANCE(69); + if (lookahead == '5') ADVANCE(85); END_STATE(); case 82: if (lookahead == '5') ADVANCE(70); END_STATE(); case 83: - if (lookahead == '6') ADVANCE(384); + if (lookahead == '5') ADVANCE(71); END_STATE(); case 84: - if (lookahead == '8') ADVANCE(384); + if (lookahead == '5') ADVANCE(72); END_STATE(); case 85: - if (lookahead == '8') ADVANCE(311); + if (lookahead == '6') ADVANCE(387); END_STATE(); case 86: - if (lookahead == '8') ADVANCE(309); + if (lookahead == '8') ADVANCE(387); END_STATE(); case 87: - if (lookahead == ':') ADVANCE(285); + if (lookahead == '8') ADVANCE(312); END_STATE(); case 88: - if (lookahead == '=') ADVANCE(353); + if (lookahead == '8') ADVANCE(310); END_STATE(); case 89: - if (lookahead == '>') ADVANCE(279); + if (lookahead == ':') ADVANCE(286); END_STATE(); case 90: - if (lookahead == '>') ADVANCE(358); + if (lookahead == '=') ADVANCE(354); END_STATE(); case 91: - if (lookahead == 'A') ADVANCE(174); + if (lookahead == '>') ADVANCE(280); END_STATE(); case 92: - if (lookahead == 'a') ADVANCE(152); - if (lookahead == 'e') ADVANCE(148); - if (lookahead == 'n') ADVANCE(277); + if (lookahead == '>') ADVANCE(361); END_STATE(); case 93: - if (lookahead == 'a') ADVANCE(143); + if (lookahead == 'A') ADVANCE(175); END_STATE(); case 94: - if (lookahead == 'a') ADVANCE(205); + if (lookahead == 'a') ADVANCE(153); + if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'n') ADVANCE(278); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(161); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 96: - if (lookahead == 'a') ADVANCE(140); - if (lookahead == 'u') ADVANCE(114); + if (lookahead == 'a') ADVANCE(206); END_STATE(); case 97: - if (lookahead == 'a') ADVANCE(184); - if (lookahead == 'o') ADVANCE(107); - if (lookahead == 'u') ADVANCE(185); + if (lookahead == 'a') ADVANCE(162); END_STATE(); case 98: - if (lookahead == 'a') ADVANCE(203); + if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'u') ADVANCE(116); END_STATE(); case 99: - if (lookahead == 'a') ADVANCE(193); - if (lookahead == 'r') ADVANCE(200); + if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'u') ADVANCE(186); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'a') ADVANCE(204); END_STATE(); case 101: - if (lookahead == 'b') ADVANCE(376); + if (lookahead == 'a') ADVANCE(194); + if (lookahead == 'r') ADVANCE(201); END_STATE(); case 102: - if (lookahead == 'c') ADVANCE(380); + if (lookahead == 'a') ADVANCE(196); END_STATE(); case 103: - if (lookahead == 'c') ADVANCE(370); + if (lookahead == 'b') ADVANCE(379); END_STATE(); case 104: - if (lookahead == 'c') ADVANCE(134); + if (lookahead == 'c') ADVANCE(383); END_STATE(); case 105: - if (lookahead == 'c') ADVANCE(188); + if (lookahead == 'c') ADVANCE(373); END_STATE(); case 106: - if (lookahead == 'c') ADVANCE(141); + if (lookahead == 'c') ADVANCE(135); END_STATE(); case 107: - if (lookahead == 'd') ADVANCE(270); + if (lookahead == 'c') ADVANCE(189); END_STATE(); case 108: - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'c') ADVANCE(142); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(283); - if (lookahead == 'i') ADVANCE(206); + if (lookahead == 'd') ADVANCE(271); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'e') ADVANCE(131); END_STATE(); case 111: - if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'i') ADVANCE(207); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(404); + if (lookahead == 'e') ADVANCE(387); END_STATE(); case 113: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(398); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(256); + if (lookahead == 'e') ADVANCE(174); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(400); + if (lookahead == 'e') ADVANCE(257); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(313); + if (lookahead == 'e') ADVANCE(585); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(382); + if (lookahead == 'e') ADVANCE(412); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(362); + if (lookahead == 'e') ADVANCE(314); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'e') ADVANCE(385); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(183); - if (lookahead == 'o') ADVANCE(164); + if (lookahead == 'e') ADVANCE(365); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'o') ADVANCE(165); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 126: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 127: - if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 128: - if (lookahead == 'f') ADVANCE(252); + if (lookahead == 'e') ADVANCE(155); END_STATE(); case 129: - if (lookahead == 'f') ADVANCE(406); - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'f') ADVANCE(369); END_STATE(); case 130: - if (lookahead == 'f') ADVANCE(98); + if (lookahead == 'f') ADVANCE(253); END_STATE(); case 131: - if (lookahead == 'f') ADVANCE(125); - if (lookahead == 'i') ADVANCE(64); - if (lookahead == 'u') ADVANCE(63); + if (lookahead == 'f') ADVANCE(418); + if (lookahead == 't') ADVANCE(203); END_STATE(); case 132: - if (lookahead == 'f') ADVANCE(126); + if (lookahead == 'f') ADVANCE(100); END_STATE(); case 133: - if (lookahead == 'h') ADVANCE(138); + if (lookahead == 'f') ADVANCE(128); END_STATE(); case 134: - if (lookahead == 'h') ADVANCE(374); + if (lookahead == 'h') ADVANCE(139); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'h') ADVANCE(377); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(102); + if (lookahead == 'i') ADVANCE(161); END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(103); + if (lookahead == 'i') ADVANCE(104); END_STATE(); case 138: - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'i') ADVANCE(105); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(106); + if (lookahead == 'i') ADVANCE(152); END_STATE(); case 140: - if (lookahead == 'i') ADVANCE(187); + if (lookahead == 'i') ADVANCE(108); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(207); + if (lookahead == 'i') ADVANCE(191); END_STATE(); case 143: - if (lookahead == 'k') ADVANCE(360); + if (lookahead == 'i') ADVANCE(208); END_STATE(); case 144: - if (lookahead == 'l') ADVANCE(315); + if (lookahead == 'k') ADVANCE(363); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(250); + if (lookahead == 'l') ADVANCE(316); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(179); + if (lookahead == 'l') ADVANCE(251); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(179); - if (lookahead == 'n') ADVANCE(199); - if (lookahead == 'x') ADVANCE(194); + if (lookahead == 'l') ADVANCE(180); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(200); + if (lookahead == 'x') ADVANCE(195); END_STATE(); case 149: - if (lookahead == 'l') ADVANCE(139); + if (lookahead == 'l') ADVANCE(192); END_STATE(); case 150: - if (lookahead == 'l') ADVANCE(189); + if (lookahead == 'l') ADVANCE(140); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(119); + if (lookahead == 'l') ADVANCE(190); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(181); + if (lookahead == 'l') ADVANCE(121); END_STATE(); case 153: - if (lookahead == 'l') ADVANCE(196); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 154: if (lookahead == 'l') ADVANCE(197); END_STATE(); case 155: - if (lookahead == 'm') ADVANCE(274); + if (lookahead == 'l') ADVANCE(198); END_STATE(); case 156: - if (lookahead == 'm') ADVANCE(168); + if (lookahead == 'm') ADVANCE(275); END_STATE(); case 157: - if (lookahead == 'n') ADVANCE(180); + if (lookahead == 'm') ADVANCE(169); END_STATE(); case 158: - if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'n') ADVANCE(181); END_STATE(); case 159: - if (lookahead == 'n') ADVANCE(378); + if (lookahead == 'n') ADVANCE(371); END_STATE(); case 160: - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'n') ADVANCE(381); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(137); + if (lookahead == 'n') ADVANCE(202); END_STATE(); case 162: - if (lookahead == 'o') ADVANCE(166); + if (lookahead == 'n') ADVANCE(138); END_STATE(); case 163: - if (lookahead == 'o') ADVANCE(144); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 164: - if (lookahead == 'o') ADVANCE(165); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 165: - if (lookahead == 'p') ADVANCE(372); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 166: - if (lookahead == 'p') ADVANCE(95); + if (lookahead == 'p') ADVANCE(375); END_STATE(); case 167: - if (lookahead == 'p') ADVANCE(145); + if (lookahead == 'p') ADVANCE(97); END_STATE(); case 168: - if (lookahead == 'p') ADVANCE(149); + if (lookahead == 'p') ADVANCE(146); END_STATE(); case 169: - if (lookahead == 'p') ADVANCE(124); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 170: - if (lookahead == 'p') ADVANCE(115); + if (lookahead == 'p') ADVANCE(126); END_STATE(); case 171: - if (lookahead == 'r') ADVANCE(96); - if (lookahead == 'y') ADVANCE(170); + if (lookahead == 'p') ADVANCE(117); END_STATE(); case 172: - if (lookahead == 'r') ADVANCE(555); + if (lookahead == 'r') ADVANCE(98); + if (lookahead == 'y') ADVANCE(171); END_STATE(); case 173: - if (lookahead == 'r') ADVANCE(158); + if (lookahead == 'r') ADVANCE(583); END_STATE(); case 174: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'r') ADVANCE(159); END_STATE(); case 175: - if (lookahead == 'r') ADVANCE(159); + if (lookahead == 'r') ADVANCE(177); END_STATE(); case 176: - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 'r') ADVANCE(160); END_STATE(); case 177: - if (lookahead == 's') ADVANCE(286); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 178: - if (lookahead == 's') ADVANCE(280); + if (lookahead == 's') ADVANCE(287); END_STATE(); case 179: - if (lookahead == 's') ADVANCE(112); + if (lookahead == 's') ADVANCE(281); END_STATE(); case 180: - if (lookahead == 's') ADVANCE(186); - if (lookahead == 't') ADVANCE(135); + if (lookahead == 's') ADVANCE(114); END_STATE(); case 181: - if (lookahead == 's') ADVANCE(117); + if (lookahead == 's') ADVANCE(187); + if (lookahead == 't') ADVANCE(136); END_STATE(); case 182: - if (lookahead == 't') ADVANCE(99); - if (lookahead == 'u') ADVANCE(169); + if (lookahead == 's') ADVANCE(119); END_STATE(); case 183: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(101); + if (lookahead == 'u') ADVANCE(170); END_STATE(); case 184: - if (lookahead == 't') ADVANCE(104); + if (lookahead == 't') ADVANCE(282); END_STATE(); case 185: - if (lookahead == 't') ADVANCE(553); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 186: - if (lookahead == 't') ADVANCE(258); + if (lookahead == 't') ADVANCE(581); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(254); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 't') ADVANCE(255); END_STATE(); case 189: - if (lookahead == 't') ADVANCE(364); + if (lookahead == 't') ADVANCE(273); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(178); + if (lookahead == 't') ADVANCE(367); END_STATE(); case 191: - if (lookahead == 't') ADVANCE(72); + if (lookahead == 't') ADVANCE(179); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(111); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(136); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 194: - if (lookahead == 't') ADVANCE(113); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(116); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 't') ADVANCE(118); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 198: - if (lookahead == 'u') ADVANCE(101); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 199: - if (lookahead == 'u') ADVANCE(155); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 200: - if (lookahead == 'u') ADVANCE(105); + if (lookahead == 'u') ADVANCE(156); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(120); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 202: - if (lookahead == 'u') ADVANCE(175); + if (lookahead == 'u') ADVANCE(122); END_STATE(); case 203: - if (lookahead == 'u') ADVANCE(150); + if (lookahead == 'u') ADVANCE(176); END_STATE(); case 204: - if (lookahead == 'y') ADVANCE(192); + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 205: - if (lookahead == 'y') ADVANCE(317); + if (lookahead == 'y') ADVANCE(193); END_STATE(); case 206: - if (lookahead == 'z') ADVANCE(118); + if (lookahead == 'y') ADVANCE(318); END_STATE(); case 207: - if (lookahead == 'z') ADVANCE(110); + if (lookahead == 'z') ADVANCE(120); END_STATE(); case 208: - if (lookahead == '0' || - lookahead == '1') ADVANCE(386); + if (lookahead == 'z') ADVANCE(112); END_STATE(); case 209: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(387); + 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') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); END_STATE(); - case 211: + case 212: if (lookahead != 0 && lookahead != '\n') ADVANCE(23); END_STATE(); - case 212: + case 213: if (lookahead != 0 && - lookahead != '\n') ADVANCE(394); + lookahead != '\n') ADVANCE(406); END_STATE(); - case 213: + case 214: if (lookahead != 0 && lookahead != '\n') ADVANCE(26); END_STATE(); - case 214: + case 215: if (lookahead != 0 && lookahead != '\n') ADVANCE(25); END_STATE(); - case 215: + case 216: if (lookahead != 0 && lookahead != '\n') ADVANCE(27); END_STATE(); - case 216: + case 217: if (lookahead != 0 && lookahead != '\n') ADVANCE(28); END_STATE(); - case 217: + case 218: if (lookahead != 0 && lookahead != '\n') ADVANCE(29); END_STATE(); - case 218: + case 219: if (lookahead != 0 && lookahead != '\n') ADVANCE(30); END_STATE(); - case 219: + case 220: if (lookahead != 0 && lookahead != '\n') ADVANCE(31); END_STATE(); - case 220: + case 221: if (lookahead != 0 && lookahead != '\n') ADVANCE(32); END_STATE(); - case 221: + case 222: if (lookahead != 0 && lookahead != '\n') ADVANCE(33); END_STATE(); - case 222: + case 223: if (lookahead != 0 && lookahead != '\n') ADVANCE(34); END_STATE(); - case 223: + case 224: if (lookahead != 0 && lookahead != '\n') ADVANCE(35); END_STATE(); - case 224: + case 225: if (lookahead != 0 && lookahead != '\n') ADVANCE(36); END_STATE(); - case 225: + case 226: if (lookahead != 0 && lookahead != '\n') ADVANCE(37); END_STATE(); - case 226: + case 227: if (lookahead != 0 && lookahead != '\n') ADVANCE(38); END_STATE(); - case 227: + case 228: if (lookahead != 0 && lookahead != '\n') ADVANCE(39); END_STATE(); - case 228: + case 229: if (lookahead != 0 && lookahead != '\n') ADVANCE(40); END_STATE(); - case 229: + case 230: if (lookahead != 0 && lookahead != '\n') ADVANCE(41); END_STATE(); - case 230: + case 231: if (lookahead != 0 && lookahead != '\n') ADVANCE(42); END_STATE(); - case 231: + case 232: if (lookahead != 0 && lookahead != '\n') ADVANCE(43); END_STATE(); - case 232: + case 233: if (lookahead != 0 && lookahead != '\n') ADVANCE(44); END_STATE(); - case 233: + case 234: if (lookahead != 0 && lookahead != '\n') ADVANCE(45); END_STATE(); - case 234: + case 235: if (lookahead != 0 && lookahead != '\n') ADVANCE(46); END_STATE(); - case 235: + case 236: if (lookahead != 0 && lookahead != '\n') ADVANCE(47); END_STATE(); - case 236: + case 237: if (lookahead != 0 && lookahead != '\n') ADVANCE(48); END_STATE(); - case 237: + case 238: if (lookahead != 0 && lookahead != '\n') ADVANCE(49); END_STATE(); - case 238: + case 239: if (lookahead != 0 && lookahead != '\n') ADVANCE(50); END_STATE(); - case 239: + case 240: if (lookahead != 0 && lookahead != '\n') ADVANCE(51); END_STATE(); - case 240: + case 241: if (lookahead != 0 && lookahead != '\n') ADVANCE(52); END_STATE(); - case 241: + case 242: if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); - case 242: + case 243: if (lookahead != 0 && lookahead != '\n') ADVANCE(54); END_STATE(); - case 243: - if (eof) ADVANCE(247); + case 244: + if (eof) ADVANCE(248); ADVANCE_MAP( - '!', 266, - '"', 390, - '#', 267, - '$', 402, - '%', 331, - '&', 336, + '!', 267, + '"', 402, + '#', 268, + '$', 414, + '%', 332, + '&', 337, '\'', 24, - '(', 289, - ')', 292, - '*', 288, - '+', 326, - ',', 276, - '-', 329, - '.', 357, - '/', 330, - '0', 385, - ':', 261, - ';', 253, - '<', 403, - '=', 264, - '>', 324, - '?', 359, - '@', 356, - 'B', 204, - '[', 268, - ']', 269, - '^', 333, - '_', 290, - 'a', 177, + '(', 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', 121, - 'e', 147, - 'f', 92, - 'i', 61, - 'l', 122, - 'm', 97, - 'n', 162, - 'o', 128, - 'p', 198, - 'r', 108, - 's', 182, - 't', 171, - 'u', 62, - 'w', 133, - '{', 248, - '|', 338, - '}', 249, - '~', 334, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(243); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); - END_STATE(); - case 244: - if (eof) ADVANCE(247); - ADVANCE_MAP( - '!', 266, - '"', 390, - '#', 267, - '%', 331, - '&', 335, - '\'', 24, - '(', 289, - ')', 292, - '*', 288, - '+', 326, - ',', 276, - '-', 328, - '.', 357, - '/', 330, - '0', 385, - ':', 87, - ';', 253, - '<', 322, - '=', 263, - '>', 324, - '?', 359, - '@', 356, - 'B', 548, - '[', 268, - ']', 269, - '^', 332, - 'b', 408, - 'c', 410, - 'd', 450, - 'e', 494, - 'f', 431, - 'i', 413, - 'l', 462, - 'm', 438, - 'p', 539, - 'r', 451, - 's', 524, - 't', 511, - 'u', 417, - 'w', 473, - '{', 248, + '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, - '}', 249, - '~', 334, + '}', 250, + '~', 335, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); END_STATE(); case 245: - if (eof) ADVANCE(247); + if (eof) ADVANCE(248); ADVANCE_MAP( - '!', 266, - '"', 390, - '#', 267, - '%', 331, - '&', 335, + '!', 267, + '"', 402, + '#', 268, + '%', 332, + '&', 336, '\'', 24, - '(', 289, - '*', 288, - '+', 326, - '-', 328, - '.', 357, - '/', 330, - '0', 385, - ':', 87, - ';', 253, - '<', 322, - '=', 263, - '>', 324, - '?', 359, - '@', 356, - 'B', 548, - '[', 268, - '^', 332, - 'b', 408, - 'c', 410, - 'd', 450, - 'e', 488, - 'f', 431, - 'i', 413, - 'l', 462, - 'm', 438, - 'p', 539, - 'r', 451, - 's', 524, - 't', 511, - 'u', 417, - 'w', 473, - '{', 248, - '|', 339, - '}', 249, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 246: - if (eof) ADVANCE(247); + if (eof) ADVANCE(248); ADVANCE_MAP( - '!', 265, - '"', 390, - '#', 267, + '!', 267, + '"', 402, + '#', 268, + '%', 332, + '&', 336, '\'', 24, - '(', 289, - ')', 292, - '*', 287, - ',', 276, - '-', 327, - '/', 60, - '0', 385, - ':', 261, - ';', 253, - '<', 403, - '=', 262, - '>', 323, - '@', 356, - 'B', 548, - '[', 268, - ']', 269, - 'b', 408, - 'c', 410, - 'd', 450, - 'e', 494, - 'f', 431, - 'i', 413, - 'l', 462, - 'm', 438, - 'p', 539, - 'r', 451, - 's', 524, - 't', 511, - 'u', 417, - 'w', 473, - '{', 248, - '|', 337, - '}', 249, - '~', 334, + '(', 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(388); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 247: - ACCEPT_TOKEN(ts_builtin_sym_end); + 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(anon_sym_LBRACE); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_impl); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 252: + case 253: ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 253: + case 254: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 254: + case 255: ACCEPT_TOKEN(anon_sym_trait); END_STATE(); - case 255: + case 256: ACCEPT_TOKEN(anon_sym_trait); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 256: + case 257: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 257: + case 258: ACCEPT_TOKEN(anon_sym_type); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 258: + case 259: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 259: + case 260: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_COLON); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 261: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(285); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(286); END_STATE(); case 263: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(352); END_STATE(); case 264: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(352); - if (lookahead == '>') ADVANCE(358); + if (lookahead == '=') ADVANCE(353); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(353); + if (lookahead == '>') ADVANCE(361); END_STATE(); case 266: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(353); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(354); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_mod); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 272: + case 273: ACCEPT_TOKEN(anon_sym_struct); END_STATE(); - case 273: + case 274: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 274: + case 275: ACCEPT_TOKEN(anon_sym_enum); END_STATE(); - case 275: + case 276: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 276: + case 277: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 277: + case 278: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 278: + case 279: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 279: + case 280: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 280: + case 281: ACCEPT_TOKEN(anon_sym_implicits); END_STATE(); - case 281: + case 282: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 282: + case 283: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 283: + case 284: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 284: + case 285: ACCEPT_TOKEN(anon_sym_use); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); - END_STATE(); - case 285: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 288: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(346); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(347); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym__); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 291: ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + if (lookahead == '_') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_RPAREN); + 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_u8); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 295: + case 296: ACCEPT_TOKEN(anon_sym_i8); END_STATE(); - case 296: + case 297: ACCEPT_TOKEN(anon_sym_i8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 297: + case 298: ACCEPT_TOKEN(anon_sym_u16); END_STATE(); - case 298: + case 299: ACCEPT_TOKEN(anon_sym_u16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 299: + case 300: ACCEPT_TOKEN(anon_sym_i16); END_STATE(); - case 300: + case 301: ACCEPT_TOKEN(anon_sym_i16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 301: + case 302: ACCEPT_TOKEN(anon_sym_u32); END_STATE(); - case 302: + case 303: ACCEPT_TOKEN(anon_sym_u32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 303: + case 304: ACCEPT_TOKEN(anon_sym_i32); END_STATE(); - case 304: + case 305: ACCEPT_TOKEN(anon_sym_i32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 305: + case 306: ACCEPT_TOKEN(anon_sym_u64); END_STATE(); - case 306: + case 307: ACCEPT_TOKEN(anon_sym_u64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 307: + case 308: ACCEPT_TOKEN(anon_sym_i64); END_STATE(); - case 308: + case 309: ACCEPT_TOKEN(anon_sym_i64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 309: + case 310: ACCEPT_TOKEN(anon_sym_u128); END_STATE(); - case 310: + case 311: ACCEPT_TOKEN(anon_sym_u128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 311: + case 312: ACCEPT_TOKEN(anon_sym_i128); END_STATE(); - case 312: + case 313: ACCEPT_TOKEN(anon_sym_i128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 313: + case 314: ACCEPT_TOKEN(anon_sym_usize); END_STATE(); - case 314: + case 315: ACCEPT_TOKEN(anon_sym_usize); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 315: + case 316: ACCEPT_TOKEN(anon_sym_bool); END_STATE(); - case 316: + case 317: ACCEPT_TOKEN(anon_sym_bool); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 317: + case 318: ACCEPT_TOKEN(anon_sym_ByteArray); END_STATE(); - case 318: + case 319: ACCEPT_TOKEN(anon_sym_ByteArray); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 319: + case 320: ACCEPT_TOKEN(anon_sym_felt252); END_STATE(); - case 320: + case 321: ACCEPT_TOKEN(anon_sym_felt252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); - END_STATE(); - case 321: - ACCEPT_TOKEN(anon_sym_LT); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 322: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(342); - if (lookahead == '=') ADVANCE(355); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(343); + if (lookahead == '=') ADVANCE(356); END_STATE(); case 324: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(354); - if (lookahead == '>') ADVANCE(343); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(355); + if (lookahead == '>') ADVANCE(344); END_STATE(); case 326: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(344); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(345); END_STATE(); case 328: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(345); END_STATE(); case 329: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '>') ADVANCE(279); + if (lookahead == '=') ADVANCE(346); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(558); - if (lookahead == '=') ADVANCE(347); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(346); + if (lookahead == '>') ADVANCE(280); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(586); if (lookahead == '=') ADVANCE(348); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(349); END_STATE(); case 333: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(349); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(350); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(340); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 336: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '=') ADVANCE(350); + if (lookahead == '&') ADVANCE(341); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '=') ADVANCE(351); END_STATE(); case 338: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(351); - if (lookahead == '|') ADVANCE(341); END_STATE(); case 339: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(341); + if (lookahead == '=') ADVANCE(352); + if (lookahead == '|') ADVANCE(342); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(342); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_break); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 362: + case 365: ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 363: + case 366: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 364: + case 367: ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 365: + case 368: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 366: + case 369: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 367: + case 370: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 368: + case 371: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 369: + case 372: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 370: + case 373: ACCEPT_TOKEN(anon_sym_nopanic); END_STATE(); - case 371: + case 374: ACCEPT_TOKEN(anon_sym_nopanic); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 372: + case 375: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 373: + case 376: ACCEPT_TOKEN(anon_sym_loop); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 374: + case 377: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 375: + case 378: ACCEPT_TOKEN(anon_sym_match); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 376: + case 379: ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 377: + case 380: ACCEPT_TOKEN(anon_sym_pub); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 378: + case 381: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 379: + case 382: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 380: + case 383: ACCEPT_TOKEN(anon_sym_static); END_STATE(); - case 381: + case 384: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 382: + case 385: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 383: + case 386: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); - END_STATE(); - case 384: - ACCEPT_TOKEN(sym_numeric_literal); - END_STATE(); - case 385: - ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(131); - if (lookahead == 'b') ADVANCE(208); - if (lookahead == 'o') ADVANCE(209); - if (lookahead == 'x') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); - END_STATE(); - case 386: - ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(131); - if (lookahead == '0' || - lookahead == '1') ADVANCE(386); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 387: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(387); END_STATE(); case 388: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); + 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(131); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + 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(aux_sym_string_literal_token1); + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); END_STATE(); case 391: - ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '\n') ADVANCE(394); - if (lookahead == '"') ADVANCE(558); - if (lookahead == '\\') ADVANCE(559); - if (lookahead != 0) ADVANCE(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(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(393); - if (lookahead == '\\') ADVANCE(212); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(392); - if (lookahead != 0 && - lookahead != '"') ADVANCE(394); + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(391); + if (lookahead == '0' || + lookahead == '1') ADVANCE(392); END_STATE(); case 393: - ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '\\') ADVANCE(212); - if (lookahead != 0 && - lookahead != '"') ADVANCE(394); + 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(aux_sym_string_literal_token2); - if (lookahead == '\\') ADVANCE(212); - if (lookahead != 0 && - lookahead != '"') ADVANCE(394); + ACCEPT_TOKEN(sym_numeric_literal); + if (lookahead == '_') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_DQUOTE); + 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_shortstring_literal); + 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_shortstring_literal); - if (lookahead == '_') ADVANCE(132); + 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(anon_sym_true); + 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(anon_sym_true); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + 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(anon_sym_false); + 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(anon_sym_false); + ACCEPT_TOKEN(sym_numeric_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_LT2); + 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(anon_sym_else); - END_STATE(); + 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(anon_sym_else); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + 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(anon_sym_ref); + 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_ref); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 408: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(390); - if (lookahead == 'o') ADVANCE(502); - if (lookahead == 'r') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(sym_shortstring_literal); END_STATE(); case 409: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(390); - if (lookahead == 'o') ADVANCE(502); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(sym_shortstring_literal); + if (lookahead == '_') ADVANCE(133); END_STATE(); case 410: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(390); - if (lookahead == 'o') ADVANCE(491); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 411: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(390); - if (lookahead == 'o') ADVANCE(498); + ACCEPT_TOKEN(anon_sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 412: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(390); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 413: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(419); - if (lookahead == '3') ADVANCE(420); - if (lookahead == '6') ADVANCE(425); - if (lookahead == '8') ADVANCE(296); - if (lookahead == 'f') ADVANCE(367); - if (lookahead == 'm') ADVANCE(507); + ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 414: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(419); - if (lookahead == '3') ADVANCE(420); - if (lookahead == '6') ADVANCE(425); - if (lookahead == '8') ADVANCE(296); - if (lookahead == 'f') ADVANCE(367); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 415: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(419); - if (lookahead == '3') ADVANCE(420); - if (lookahead == '6') ADVANCE(425); - if (lookahead == '8') ADVANCE(296); - if (lookahead == 'm') ADVANCE(507); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 416: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(419); - if (lookahead == '3') ADVANCE(420); - if (lookahead == '6') ADVANCE(425); - if (lookahead == '8') ADVANCE(296); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 417: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(424); - if (lookahead == '3') ADVANCE(421); - if (lookahead == '6') ADVANCE(426); - if (lookahead == '8') ADVANCE(294); - if (lookahead == 's') ADVANCE(453); + ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 418: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(424); - if (lookahead == '3') ADVANCE(421); - if (lookahead == '6') ADVANCE(426); - if (lookahead == '8') ADVANCE(294); - if (lookahead == 's') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 419: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(428); - if (lookahead == '6') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_ref); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(304); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(302); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(427); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(320); + if (lookahead == '"') ADVANCE(402); + if (lookahead == 'o') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(429); - if (lookahead == '6') ADVANCE(298); + if (lookahead == '"') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(308); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(306); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(423); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(312); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(310); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(517); + 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') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(482); - if (lookahead == 'e') ADVANCE(485); - if (lookahead == 'n') ADVANCE(278); + 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 == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(482); - if (lookahead == 'e') ADVANCE(485); + 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 == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(481); + if (lookahead == '2') ADVANCE(450); + if (lookahead == '6') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(549); + if (lookahead == '2') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(480); - if (lookahead == 'u') ADVANCE(455); + if (lookahead == '2') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(480); + if (lookahead == '2') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(526); - if (lookahead == 'o') ADVANCE(449); - if (lookahead == 'u') ADVANCE(532); + if (lookahead == '2') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(526); - if (lookahead == 'o') ADVANCE(449); + if (lookahead == '2') ADVANCE(451); + if (lookahead == '6') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(526); - if (lookahead == 'u') ADVANCE(532); + if (lookahead == '2') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(526); + if (lookahead == '2') ADVANCE(449); + if (lookahead == '6') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(546); + if (lookahead == '2') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(497); + if (lookahead == '4') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(538); - if (lookahead == 'r') ADVANCE(542); + if (lookahead == '4') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(377); + if (lookahead == '4') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(381); + if (lookahead == '5') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(371); + if (lookahead == '5') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(474); + if (lookahead == '5') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(529); + if (lookahead == '6') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(271); + if (lookahead == '8') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(472); + if (lookahead == '8') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(470); + if (lookahead == '8') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(433); + if (lookahead == 'A') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(550); + 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 == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(430); + if (lookahead == 'a') ADVANCE(507); + if (lookahead == 'e') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(399); + if (lookahead == 'a') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'a') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'u') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'a') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(383); + 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 == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'o') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'u') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(525); - if (lookahead == 'o') ADVANCE(503); + if (lookahead == 'a') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(525); + if (lookahead == 'a') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(471); + if (lookahead == 'a') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(485); - if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'a') ADVANCE(563); + if (lookahead == 'r') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'b') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(513); + if (lookahead == 'c') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'c') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'c') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(407); - if (lookahead == 't') ADVANCE(547); + if (lookahead == 'c') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(407); + if (lookahead == 'd') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(441); + if (lookahead == 'e') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(479); + if (lookahead == 'e') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(375); + if (lookahead == 'e') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(550); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'e') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(445); + if (lookahead == 'e') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(446); + if (lookahead == 'e') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'e') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(528); + if (lookahead == 'e') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(361); + if (lookahead == 'e') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(522); + if (lookahead == 'e') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(316); + if (lookahead == 'e') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(251); + if (lookahead == 'e') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(534); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(530); + if (lookahead == 'e') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'e') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(523); - if (lookahead == 'n') ADVANCE(540); - if (lookahead == 'x') ADVANCE(537); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(523); + if (lookahead == 'e') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(275); + if (lookahead == 'e') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(520); + if (lookahead == 'e') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(369); + if (lookahead == 'e') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(379); + if (lookahead == 'e') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(540); - if (lookahead == 'x') ADVANCE(537); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(521); + if (lookahead == 'f') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'f') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(478); + if (lookahead == 'h') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(535); + if (lookahead == 'h') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(502); + if (lookahead == 'i') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(449); + if (lookahead == 'i') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(503); + if (lookahead == 'i') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(483); + if (lookahead == 'i') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(506); + if (lookahead == 'i') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'i') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(495); + if (lookahead == 'i') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(373); + if (lookahead == 'k') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(484); + if (lookahead == 'l') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(442); + if (lookahead == 'l') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(468); + if (lookahead == 'l') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(456); + if (lookahead == 'l') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(435); - if (lookahead == 'y') ADVANCE(510); + if (lookahead == 'l') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(556); + if (lookahead == 'l') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(492); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(434); + if (lookahead == 'l') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(542); + if (lookahead == 'l') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(493); + if (lookahead == 'm') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(514); + if (lookahead == 'n') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(436); - if (lookahead == 'y') ADVANCE(510); + if (lookahead == 'n') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(543); + if (lookahead == 'n') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(527); - if (lookahead == 't') ADVANCE(476); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(527); + if (lookahead == 'n') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(457); + if (lookahead == 'n') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(461); + if (lookahead == 'n') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(509); + if (lookahead == 'n') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(282); + if (lookahead == 'o') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(447); + if (lookahead == 'o') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(259); + if (lookahead == 'o') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(255); + if (lookahead == 'o') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(273); + if (lookahead == 'o') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(365); + if (lookahead == 'o') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(443); - if (lookahead == 'u') ADVANCE(509); + if (lookahead == 'o') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(554); + if (lookahead == 'p') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(547); + if (lookahead == 'p') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(422); + if (lookahead == 'p') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(476); + if (lookahead == 'p') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(454); + if (lookahead == 'p') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(467); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(477); + if (lookahead == 'r') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(444); + if (lookahead == 'r') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(490); + if (lookahead == 'r') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(509); + if (lookahead == 'r') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(448); + if (lookahead == 'r') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(455); + if (lookahead == 'r') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(532); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(460); + if (lookahead == 'r') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(486); + 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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(516); + if (lookahead == 's') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(536); + if (lookahead == 's') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(318); + if (lookahead == 's') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(458); + if (lookahead == 't') ADVANCE(541); + if (lookahead == 'u') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(551); + ('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(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_in); + 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_mutable_specifier); + 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_mutable_specifier); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 555: - ACCEPT_TOKEN(sym_super); + 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_super); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 557: - ACCEPT_TOKEN(sym_crate); + 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(558); + lookahead != '\n') ADVANCE(586); END_STATE(); - case 559: + case 587: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(391); + lookahead != '\n') ADVANCE(403); END_STATE(); default: return false; @@ -7729,29 +7979,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 246}, - [2] = {.lex_state = 246}, - [3] = {.lex_state = 246}, - [4] = {.lex_state = 246}, - [5] = {.lex_state = 246}, - [6] = {.lex_state = 246}, - [7] = {.lex_state = 246}, - [8] = {.lex_state = 246}, - [9] = {.lex_state = 246}, - [10] = {.lex_state = 246}, - [11] = {.lex_state = 246}, - [12] = {.lex_state = 246}, - [13] = {.lex_state = 246}, - [14] = {.lex_state = 246}, - [15] = {.lex_state = 246}, - [16] = {.lex_state = 246}, - [17] = {.lex_state = 246}, - [18] = {.lex_state = 246}, - [19] = {.lex_state = 246}, - [20] = {.lex_state = 246}, + [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 = 2}, - [23] = {.lex_state = 1}, + [22] = {.lex_state = 1}, + [23] = {.lex_state = 2}, [24] = {.lex_state = 1}, [25] = {.lex_state = 1}, [26] = {.lex_state = 1}, @@ -7796,34 +8046,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 1}, [66] = {.lex_state = 1}, [67] = {.lex_state = 1}, - [68] = {.lex_state = 244}, - [69] = {.lex_state = 244}, - [70] = {.lex_state = 244}, - [71] = {.lex_state = 244}, - [72] = {.lex_state = 244}, - [73] = {.lex_state = 244}, - [74] = {.lex_state = 244}, - [75] = {.lex_state = 244}, - [76] = {.lex_state = 244}, - [77] = {.lex_state = 244}, - [78] = {.lex_state = 244}, - [79] = {.lex_state = 244}, - [80] = {.lex_state = 244}, - [81] = {.lex_state = 244}, - [82] = {.lex_state = 244}, - [83] = {.lex_state = 245}, - [84] = {.lex_state = 245}, - [85] = {.lex_state = 245}, - [86] = {.lex_state = 245}, + [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 = 244}, - [89] = {.lex_state = 5}, - [90] = {.lex_state = 244}, + [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 = 5}, - [95] = {.lex_state = 244}, + [94] = {.lex_state = 245}, + [95] = {.lex_state = 5}, [96] = {.lex_state = 5}, [97] = {.lex_state = 5}, [98] = {.lex_state = 5}, @@ -7846,16 +8096,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [115] = {.lex_state = 5}, [116] = {.lex_state = 5}, [117] = {.lex_state = 5}, - [118] = {.lex_state = 5}, - [119] = {.lex_state = 5}, - [120] = {.lex_state = 6}, + [118] = {.lex_state = 6}, + [119] = {.lex_state = 6}, + [120] = {.lex_state = 5}, [121] = {.lex_state = 6}, - [122] = {.lex_state = 5}, - [123] = {.lex_state = 6}, - [124] = {.lex_state = 6}, - [125] = {.lex_state = 5}, + [122] = {.lex_state = 6}, + [123] = {.lex_state = 5}, + [124] = {.lex_state = 5}, + [125] = {.lex_state = 6}, [126] = {.lex_state = 6}, - [127] = {.lex_state = 6}, + [127] = {.lex_state = 5}, [128] = {.lex_state = 6}, [129] = {.lex_state = 6}, [130] = {.lex_state = 5}, @@ -7948,32 +8198,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [217] = {.lex_state = 5}, [218] = {.lex_state = 5}, [219] = {.lex_state = 5}, - [220] = {.lex_state = 10}, + [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 = 11}, + [227] = {.lex_state = 10}, [228] = {.lex_state = 16}, - [229] = {.lex_state = 10}, - [230] = {.lex_state = 16}, - [231] = {.lex_state = 10}, - [232] = {.lex_state = 246}, - [233] = {.lex_state = 10}, - [234] = {.lex_state = 246}, - [235] = {.lex_state = 11}, + [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 = 10}, - [240] = {.lex_state = 16}, - [241] = {.lex_state = 10}, - [242] = {.lex_state = 246}, - [243] = {.lex_state = 12}, - [244] = {.lex_state = 16}, - [245] = {.lex_state = 12}, + [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}, @@ -7985,90 +8235,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [254] = {.lex_state = 12}, [255] = {.lex_state = 12}, [256] = {.lex_state = 12}, - [257] = {.lex_state = 246}, - [258] = {.lex_state = 246}, - [259] = {.lex_state = 246}, - [260] = {.lex_state = 246}, - [261] = {.lex_state = 246}, - [262] = {.lex_state = 246}, - [263] = {.lex_state = 246}, - [264] = {.lex_state = 246}, - [265] = {.lex_state = 246}, - [266] = {.lex_state = 246}, - [267] = {.lex_state = 246}, - [268] = {.lex_state = 246}, - [269] = {.lex_state = 246}, - [270] = {.lex_state = 246}, - [271] = {.lex_state = 246}, - [272] = {.lex_state = 246}, - [273] = {.lex_state = 246}, - [274] = {.lex_state = 246}, - [275] = {.lex_state = 246}, - [276] = {.lex_state = 246}, - [277] = {.lex_state = 246}, - [278] = {.lex_state = 246}, - [279] = {.lex_state = 246}, - [280] = {.lex_state = 246}, - [281] = {.lex_state = 246}, - [282] = {.lex_state = 246}, - [283] = {.lex_state = 246}, - [284] = {.lex_state = 246}, - [285] = {.lex_state = 246}, - [286] = {.lex_state = 246}, - [287] = {.lex_state = 246}, - [288] = {.lex_state = 246}, - [289] = {.lex_state = 246}, - [290] = {.lex_state = 246}, - [291] = {.lex_state = 246}, - [292] = {.lex_state = 246}, - [293] = {.lex_state = 246}, - [294] = {.lex_state = 246}, - [295] = {.lex_state = 246}, - [296] = {.lex_state = 246}, - [297] = {.lex_state = 246}, - [298] = {.lex_state = 246}, - [299] = {.lex_state = 246}, - [300] = {.lex_state = 246}, - [301] = {.lex_state = 246}, - [302] = {.lex_state = 246}, - [303] = {.lex_state = 246}, - [304] = {.lex_state = 246}, - [305] = {.lex_state = 246}, - [306] = {.lex_state = 246}, - [307] = {.lex_state = 246}, - [308] = {.lex_state = 246}, - [309] = {.lex_state = 246}, - [310] = {.lex_state = 246}, - [311] = {.lex_state = 246}, - [312] = {.lex_state = 246}, - [313] = {.lex_state = 246}, - [314] = {.lex_state = 246}, - [315] = {.lex_state = 246}, - [316] = {.lex_state = 246}, - [317] = {.lex_state = 246}, - [318] = {.lex_state = 246}, - [319] = {.lex_state = 246}, - [320] = {.lex_state = 246}, - [321] = {.lex_state = 246}, - [322] = {.lex_state = 246}, - [323] = {.lex_state = 246}, - [324] = {.lex_state = 246}, - [325] = {.lex_state = 246}, - [326] = {.lex_state = 246}, - [327] = {.lex_state = 246}, - [328] = {.lex_state = 246}, - [329] = {.lex_state = 246}, - [330] = {.lex_state = 246}, - [331] = {.lex_state = 246}, - [332] = {.lex_state = 246}, - [333] = {.lex_state = 246}, - [334] = {.lex_state = 246}, - [335] = {.lex_state = 246}, - [336] = {.lex_state = 15}, - [337] = {.lex_state = 16}, + [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 = 15}, + [340] = {.lex_state = 16}, [341] = {.lex_state = 15}, [342] = {.lex_state = 15}, [343] = {.lex_state = 15}, @@ -8110,10 +8360,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [379] = {.lex_state = 15}, [380] = {.lex_state = 15}, [381] = {.lex_state = 15}, - [382] = {.lex_state = 5}, + [382] = {.lex_state = 15}, [383] = {.lex_state = 15}, [384] = {.lex_state = 15}, - [385] = {.lex_state = 15}, + [385] = {.lex_state = 5}, [386] = {.lex_state = 15}, [387] = {.lex_state = 15}, [388] = {.lex_state = 15}, @@ -8121,51 +8371,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [390] = {.lex_state = 15}, [391] = {.lex_state = 15}, [392] = {.lex_state = 15}, - [393] = {.lex_state = 17}, + [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 = 17}, + [400] = {.lex_state = 5}, [401] = {.lex_state = 17}, [402] = {.lex_state = 17}, - [403] = {.lex_state = 5}, - [404] = {.lex_state = 5}, - [405] = {.lex_state = 4}, + [403] = {.lex_state = 17}, + [404] = {.lex_state = 17}, + [405] = {.lex_state = 5}, [406] = {.lex_state = 4}, [407] = {.lex_state = 4}, - [408] = {.lex_state = 4}, + [408] = {.lex_state = 2}, [409] = {.lex_state = 4}, [410] = {.lex_state = 4}, - [411] = {.lex_state = 2}, + [411] = {.lex_state = 4}, [412] = {.lex_state = 4}, - [413] = {.lex_state = 2}, + [413] = {.lex_state = 4}, [414] = {.lex_state = 2}, [415] = {.lex_state = 4}, [416] = {.lex_state = 2}, [417] = {.lex_state = 2}, - [418] = {.lex_state = 4}, + [418] = {.lex_state = 2}, [419] = {.lex_state = 2}, [420] = {.lex_state = 56}, - [421] = {.lex_state = 56}, + [421] = {.lex_state = 4}, [422] = {.lex_state = 2}, [423] = {.lex_state = 2}, [424] = {.lex_state = 4}, - [425] = {.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 = 2}, + [430] = {.lex_state = 4}, [431] = {.lex_state = 2}, - [432] = {.lex_state = 56}, - [433] = {.lex_state = 2}, - [434] = {.lex_state = 56}, - [435] = {.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 = 2}, + [437] = {.lex_state = 56}, [438] = {.lex_state = 2}, [439] = {.lex_state = 2}, [440] = {.lex_state = 2}, @@ -8214,16 +8464,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [483] = {.lex_state = 2}, [484] = {.lex_state = 2}, [485] = {.lex_state = 2}, - [486] = {.lex_state = 10}, + [486] = {.lex_state = 2}, [487] = {.lex_state = 10}, [488] = {.lex_state = 10}, [489] = {.lex_state = 10}, - [490] = {.lex_state = 3}, + [490] = {.lex_state = 10}, [491] = {.lex_state = 10}, - [492] = {.lex_state = 10}, - [493] = {.lex_state = 10}, + [492] = {.lex_state = 3}, + [493] = {.lex_state = 2}, [494] = {.lex_state = 10}, - [495] = {.lex_state = 2}, + [495] = {.lex_state = 10}, [496] = {.lex_state = 10}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, @@ -8244,19 +8494,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [513] = {.lex_state = 10}, [514] = {.lex_state = 10}, [515] = {.lex_state = 10}, - [516] = {.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 = 15}, + [523] = {.lex_state = 10}, [524] = {.lex_state = 10}, [525] = {.lex_state = 10}, [526] = {.lex_state = 10}, [527] = {.lex_state = 10}, - [528] = {.lex_state = 10}, + [528] = {.lex_state = 2}, [529] = {.lex_state = 10}, [530] = {.lex_state = 10}, [531] = {.lex_state = 10}, @@ -8271,11 +8521,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [540] = {.lex_state = 10}, [541] = {.lex_state = 10}, [542] = {.lex_state = 10}, - [543] = {.lex_state = 2}, - [544] = {.lex_state = 10}, + [543] = {.lex_state = 10}, + [544] = {.lex_state = 2}, [545] = {.lex_state = 10}, [546] = {.lex_state = 10}, - [547] = {.lex_state = 2}, + [547] = {.lex_state = 10}, [548] = {.lex_state = 10}, [549] = {.lex_state = 10}, [550] = {.lex_state = 10}, @@ -8298,58 +8548,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [567] = {.lex_state = 10}, [568] = {.lex_state = 10}, [569] = {.lex_state = 10}, - [570] = {.lex_state = 21}, - [571] = {.lex_state = 3}, - [572] = {.lex_state = 2}, + [570] = {.lex_state = 10}, + [571] = {.lex_state = 2}, + [572] = {.lex_state = 55}, [573] = {.lex_state = 3}, [574] = {.lex_state = 2}, - [575] = {.lex_state = 55}, + [575] = {.lex_state = 2}, [576] = {.lex_state = 3}, [577] = {.lex_state = 2}, - [578] = {.lex_state = 2}, - [579] = {.lex_state = 2}, - [580] = {.lex_state = 2}, - [581] = {.lex_state = 21}, - [582] = {.lex_state = 21}, - [583] = {.lex_state = 21}, - [584] = {.lex_state = 21}, - [585] = {.lex_state = 21}, - [586] = {.lex_state = 21}, - [587] = {.lex_state = 2}, - [588] = {.lex_state = 3}, - [589] = {.lex_state = 55}, - [590] = {.lex_state = 55}, + [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 = 15}, - [594] = {.lex_state = 55}, - [595] = {.lex_state = 3}, - [596] = {.lex_state = 55}, + [593] = {.lex_state = 55}, + [594] = {.lex_state = 15}, + [595] = {.lex_state = 55}, + [596] = {.lex_state = 3}, [597] = {.lex_state = 55}, - [598] = {.lex_state = 2}, + [598] = {.lex_state = 55}, [599] = {.lex_state = 55}, - [600] = {.lex_state = 55}, + [600] = {.lex_state = 2}, [601] = {.lex_state = 55}, - [602] = {.lex_state = 2}, + [602] = {.lex_state = 55}, [603] = {.lex_state = 55}, [604] = {.lex_state = 2}, - [605] = {.lex_state = 55}, + [605] = {.lex_state = 2}, [606] = {.lex_state = 55}, [607] = {.lex_state = 55}, - [608] = {.lex_state = 15}, + [608] = {.lex_state = 55}, [609] = {.lex_state = 55}, - [610] = {.lex_state = 55}, - [611] = {.lex_state = 2}, - [612] = {.lex_state = 55}, - [613] = {.lex_state = 3}, - [614] = {.lex_state = 55}, - [615] = {.lex_state = 2}, - [616] = {.lex_state = 55}, - [617] = {.lex_state = 3}, - [618] = {.lex_state = 55}, - [619] = {.lex_state = 2}, - [620] = {.lex_state = 2}, - [621] = {.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}, @@ -8357,145 +8607,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [626] = {.lex_state = 2}, [627] = {.lex_state = 2}, [628] = {.lex_state = 55}, - [629] = {.lex_state = 2}, - [630] = {.lex_state = 21}, - [631] = {.lex_state = 55}, - [632] = {.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 = 2}, - [637] = {.lex_state = 55}, - [638] = {.lex_state = 55}, - [639] = {.lex_state = 2}, - [640] = {.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 = 3}, + [644] = {.lex_state = 2}, [645] = {.lex_state = 3}, - [646] = {.lex_state = 55}, - [647] = {.lex_state = 55}, - [648] = {.lex_state = 21}, + [646] = {.lex_state = 3}, + [647] = {.lex_state = 2}, + [648] = {.lex_state = 55}, [649] = {.lex_state = 55}, - [650] = {.lex_state = 2}, - [651] = {.lex_state = 2}, - [652] = {.lex_state = 2}, - [653] = {.lex_state = 55}, - [654] = {.lex_state = 55}, - [655] = {.lex_state = 2}, - [656] = {.lex_state = 2}, + [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 = 21}, + [660] = {.lex_state = 2}, [661] = {.lex_state = 2}, - [662] = {.lex_state = 3}, - [663] = {.lex_state = 3}, - [664] = {.lex_state = 55}, + [662] = {.lex_state = 20}, + [663] = {.lex_state = 2}, + [664] = {.lex_state = 3}, [665] = {.lex_state = 3}, [666] = {.lex_state = 55}, - [667] = {.lex_state = 21}, - [668] = {.lex_state = 3}, - [669] = {.lex_state = 55}, + [667] = {.lex_state = 3}, + [668] = {.lex_state = 2}, + [669] = {.lex_state = 20}, [670] = {.lex_state = 3}, - [671] = {.lex_state = 3}, - [672] = {.lex_state = 2}, - [673] = {.lex_state = 2}, - [674] = {.lex_state = 2}, + [671] = {.lex_state = 55}, + [672] = {.lex_state = 3}, + [673] = {.lex_state = 3}, + [674] = {.lex_state = 55}, [675] = {.lex_state = 2}, - [676] = {.lex_state = 55}, + [676] = {.lex_state = 2}, [677] = {.lex_state = 2}, - [678] = {.lex_state = 55}, + [678] = {.lex_state = 2}, [679] = {.lex_state = 2}, - [680] = {.lex_state = 2}, - [681] = {.lex_state = 2}, - [682] = {.lex_state = 55}, + [680] = {.lex_state = 55}, + [681] = {.lex_state = 55}, + [682] = {.lex_state = 2}, [683] = {.lex_state = 2}, - [684] = {.lex_state = 2}, + [684] = {.lex_state = 55}, [685] = {.lex_state = 2}, - [686] = {.lex_state = 2}, - [687] = {.lex_state = 55}, + [686] = {.lex_state = 16}, + [687] = {.lex_state = 2}, [688] = {.lex_state = 55}, [689] = {.lex_state = 2}, - [690] = {.lex_state = 55}, - [691] = {.lex_state = 55}, - [692] = {.lex_state = 16}, - [693] = {.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 = 15}, - [696] = {.lex_state = 2}, - [697] = {.lex_state = 3}, + [695] = {.lex_state = 2}, + [696] = {.lex_state = 3}, + [697] = {.lex_state = 2}, [698] = {.lex_state = 2}, - [699] = {.lex_state = 15}, + [699] = {.lex_state = 2}, [700] = {.lex_state = 2}, [701] = {.lex_state = 2}, [702] = {.lex_state = 2}, [703] = {.lex_state = 2}, - [704] = {.lex_state = 3}, - [705] = {.lex_state = 3}, + [704] = {.lex_state = 14}, + [705] = {.lex_state = 2}, [706] = {.lex_state = 2}, - [707] = {.lex_state = 2}, + [707] = {.lex_state = 3}, [708] = {.lex_state = 2}, - [709] = {.lex_state = 2}, + [709] = {.lex_state = 15}, [710] = {.lex_state = 2}, [711] = {.lex_state = 2}, - [712] = {.lex_state = 14}, - [713] = {.lex_state = 2}, - [714] = {.lex_state = 15}, - [715] = {.lex_state = 3}, - [716] = {.lex_state = 3}, - [717] = {.lex_state = 2}, - [718] = {.lex_state = 3}, + [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 = 2}, - [723] = {.lex_state = 14}, - [724] = {.lex_state = 2}, - [725] = {.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 = 14}, + [729] = {.lex_state = 2}, [730] = {.lex_state = 2}, [731] = {.lex_state = 2}, [732] = {.lex_state = 2}, - [733] = {.lex_state = 2}, + [733] = {.lex_state = 14}, [734] = {.lex_state = 2}, [735] = {.lex_state = 2}, - [736] = {.lex_state = 2}, + [736] = {.lex_state = 14}, [737] = {.lex_state = 2}, - [738] = {.lex_state = 2}, + [738] = {.lex_state = 3}, [739] = {.lex_state = 2}, - [740] = {.lex_state = 2}, - [741] = {.lex_state = 3}, + [740] = {.lex_state = 3}, + [741] = {.lex_state = 2}, [742] = {.lex_state = 2}, - [743] = {.lex_state = 3}, - [744] = {.lex_state = 15}, + [743] = {.lex_state = 2}, + [744] = {.lex_state = 2}, [745] = {.lex_state = 3}, [746] = {.lex_state = 3}, [747] = {.lex_state = 2}, - [748] = {.lex_state = 2}, - [749] = {.lex_state = 2}, - [750] = {.lex_state = 3}, - [751] = {.lex_state = 3}, + [748] = {.lex_state = 15}, + [749] = {.lex_state = 3}, + [750] = {.lex_state = 2}, + [751] = {.lex_state = 2}, [752] = {.lex_state = 3}, - [753] = {.lex_state = 3}, + [753] = {.lex_state = 2}, [754] = {.lex_state = 3}, [755] = {.lex_state = 3}, - [756] = {.lex_state = 3}, - [757] = {.lex_state = 3}, + [756] = {.lex_state = 2}, + [757] = {.lex_state = 2}, [758] = {.lex_state = 3}, - [759] = {.lex_state = 2}, + [759] = {.lex_state = 3}, [760] = {.lex_state = 3}, - [761] = {.lex_state = 3}, - [762] = {.lex_state = 2}, - [763] = {.lex_state = 3}, - [764] = {.lex_state = 2}, - [765] = {.lex_state = 2}, + [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 = 3}, + [767] = {.lex_state = 2}, [768] = {.lex_state = 3}, [769] = {.lex_state = 3}, [770] = {.lex_state = 3}, @@ -8511,10 +8761,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [780] = {.lex_state = 3}, [781] = {.lex_state = 3}, [782] = {.lex_state = 3}, - [783] = {.lex_state = 55}, - [784] = {.lex_state = 3}, + [783] = {.lex_state = 3}, + [784] = {.lex_state = 55}, [785] = {.lex_state = 3}, - [786] = {.lex_state = 3}, + [786] = {.lex_state = 15}, [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, @@ -8534,23 +8784,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [803] = {.lex_state = 3}, [804] = {.lex_state = 3}, [805] = {.lex_state = 3}, - [806] = {.lex_state = 15}, + [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 = 55}, - [813] = {.lex_state = 55}, + [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 = 21}, - [820] = {.lex_state = 21}, - [821] = {.lex_state = 55}, - [822] = {.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}, @@ -8563,369 +8813,369 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [832] = {.lex_state = 55}, [833] = {.lex_state = 55}, [834] = {.lex_state = 55}, - [835] = {.lex_state = 8}, - [836] = {.lex_state = 8}, + [835] = {.lex_state = 55}, + [836] = {.lex_state = 55}, [837] = {.lex_state = 8}, [838] = {.lex_state = 8}, - [839] = {.lex_state = 246}, - [840] = {.lex_state = 246}, - [841] = {.lex_state = 246}, - [842] = {.lex_state = 246}, - [843] = {.lex_state = 246}, - [844] = {.lex_state = 246}, - [845] = {.lex_state = 246}, - [846] = {.lex_state = 246}, - [847] = {.lex_state = 246}, - [848] = {.lex_state = 8}, - [849] = {.lex_state = 57}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 57}, - [852] = {.lex_state = 57}, - [853] = {.lex_state = 8}, - [854] = {.lex_state = 246}, + [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 = 57}, - [857] = {.lex_state = 8}, - [858] = {.lex_state = 9}, + [856] = {.lex_state = 8}, + [857] = {.lex_state = 58}, + [858] = {.lex_state = 0}, [859] = {.lex_state = 8}, - [860] = {.lex_state = 8}, - [861] = {.lex_state = 9}, - [862] = {.lex_state = 9}, - [863] = {.lex_state = 8}, - [864] = {.lex_state = 8}, - [865] = {.lex_state = 9}, - [866] = {.lex_state = 8}, - [867] = {.lex_state = 0}, + [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 = 246}, + [870] = {.lex_state = 21}, [871] = {.lex_state = 8}, - [872] = {.lex_state = 246}, - [873] = {.lex_state = 0}, + [872] = {.lex_state = 9}, + [873] = {.lex_state = 9}, [874] = {.lex_state = 8}, - [875] = {.lex_state = 8}, - [876] = {.lex_state = 22}, - [877] = {.lex_state = 246}, - [878] = {.lex_state = 8}, - [879] = {.lex_state = 246}, - [880] = {.lex_state = 8}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 8}, - [883] = {.lex_state = 0}, + [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 = 8}, + [885] = {.lex_state = 22}, [886] = {.lex_state = 8}, - [887] = {.lex_state = 22}, - [888] = {.lex_state = 22}, - [889] = {.lex_state = 22}, - [890] = {.lex_state = 22}, - [891] = {.lex_state = 22}, - [892] = {.lex_state = 9}, - [893] = {.lex_state = 22}, - [894] = {.lex_state = 246}, - [895] = {.lex_state = 20}, - [896] = {.lex_state = 22}, - [897] = {.lex_state = 8}, - [898] = {.lex_state = 22}, - [899] = {.lex_state = 57}, - [900] = {.lex_state = 22}, - [901] = {.lex_state = 20}, - [902] = {.lex_state = 57}, - [903] = {.lex_state = 246}, - [904] = {.lex_state = 57}, - [905] = {.lex_state = 57}, - [906] = {.lex_state = 57}, - [907] = {.lex_state = 246}, - [908] = {.lex_state = 57}, - [909] = {.lex_state = 57}, - [910] = {.lex_state = 22}, - [911] = {.lex_state = 57}, - [912] = {.lex_state = 57}, - [913] = {.lex_state = 57}, - [914] = {.lex_state = 57}, - [915] = {.lex_state = 57}, - [916] = {.lex_state = 57}, - [917] = {.lex_state = 22}, - [918] = {.lex_state = 246}, - [919] = {.lex_state = 246}, - [920] = {.lex_state = 57}, - [921] = {.lex_state = 57}, - [922] = {.lex_state = 246}, - [923] = {.lex_state = 20}, - [924] = {.lex_state = 57}, - [925] = {.lex_state = 22}, - [926] = {.lex_state = 22}, - [927] = {.lex_state = 22}, + [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 = 57}, - [930] = {.lex_state = 57}, - [931] = {.lex_state = 57}, - [932] = {.lex_state = 57}, - [933] = {.lex_state = 57}, - [934] = {.lex_state = 57}, - [935] = {.lex_state = 57}, - [936] = {.lex_state = 57}, - [937] = {.lex_state = 57}, - [938] = {.lex_state = 20}, - [939] = {.lex_state = 57}, - [940] = {.lex_state = 57}, - [941] = {.lex_state = 22}, - [942] = {.lex_state = 22}, - [943] = {.lex_state = 57}, - [944] = {.lex_state = 20}, - [945] = {.lex_state = 57}, - [946] = {.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 = 246}, - [949] = {.lex_state = 57}, - [950] = {.lex_state = 57}, - [951] = {.lex_state = 57}, - [952] = {.lex_state = 57}, - [953] = {.lex_state = 20}, - [954] = {.lex_state = 246}, - [955] = {.lex_state = 22}, - [956] = {.lex_state = 246}, - [957] = {.lex_state = 20}, - [958] = {.lex_state = 246}, - [959] = {.lex_state = 246}, - [960] = {.lex_state = 246}, - [961] = {.lex_state = 246}, - [962] = {.lex_state = 246}, + [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 = 22}, - [965] = {.lex_state = 9}, - [966] = {.lex_state = 58}, - [967] = {.lex_state = 22}, - [968] = {.lex_state = 58}, - [969] = {.lex_state = 58}, - [970] = {.lex_state = 9}, - [971] = {.lex_state = 9}, - [972] = {.lex_state = 246}, + [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 = 0}, - [975] = {.lex_state = 246}, - [976] = {.lex_state = 246}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 246}, - [979] = {.lex_state = 9}, + [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 = 9}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 246}, - [984] = {.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 = 246}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 9}, - [990] = {.lex_state = 8}, - [991] = {.lex_state = 4}, - [992] = {.lex_state = 5}, - [993] = {.lex_state = 246}, - [994] = {.lex_state = 22}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 246}, + [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 = 8}, - [1000] = {.lex_state = 8}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 5}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 57}, + [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 = 8}, - [1007] = {.lex_state = 246}, - [1008] = {.lex_state = 59}, - [1009] = {.lex_state = 20}, - [1010] = {.lex_state = 59}, - [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 246}, - [1014] = {.lex_state = 5}, - [1015] = {.lex_state = 58}, - [1016] = {.lex_state = 8}, - [1017] = {.lex_state = 8}, - [1018] = {.lex_state = 246}, - [1019] = {.lex_state = 8}, - [1020] = {.lex_state = 246}, - [1021] = {.lex_state = 8}, - [1022] = {.lex_state = 8}, + [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 = 5}, + [1025] = {.lex_state = 8}, [1026] = {.lex_state = 8}, - [1027] = {.lex_state = 59}, - [1028] = {.lex_state = 8}, - [1029] = {.lex_state = 5}, - [1030] = {.lex_state = 20}, - [1031] = {.lex_state = 59}, - [1032] = {.lex_state = 246}, - [1033] = {.lex_state = 246}, + [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 = 4}, + [1035] = {.lex_state = 247}, [1036] = {.lex_state = 8}, - [1037] = {.lex_state = 246}, - [1038] = {.lex_state = 57}, + [1037] = {.lex_state = 4}, + [1038] = {.lex_state = 247}, [1039] = {.lex_state = 8}, - [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 246}, - [1042] = {.lex_state = 58}, - [1043] = {.lex_state = 0}, + [1040] = {.lex_state = 58}, + [1041] = {.lex_state = 247}, + [1042] = {.lex_state = 247}, + [1043] = {.lex_state = 247}, [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 246}, - [1046] = {.lex_state = 246}, - [1047] = {.lex_state = 246}, - [1048] = {.lex_state = 57}, - [1049] = {.lex_state = 57}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 246}, - [1052] = {.lex_state = 57}, + [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 = 59}, - [1055] = {.lex_state = 57}, - [1056] = {.lex_state = 246}, - [1057] = {.lex_state = 5}, + [1054] = {.lex_state = 247}, + [1055] = {.lex_state = 60}, + [1056] = {.lex_state = 58}, + [1057] = {.lex_state = 247}, [1058] = {.lex_state = 5}, - [1059] = {.lex_state = 59}, - [1060] = {.lex_state = 58}, - [1061] = {.lex_state = 246}, - [1062] = {.lex_state = 58}, - [1063] = {.lex_state = 58}, - [1064] = {.lex_state = 57}, + [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 = 58}, - [1067] = {.lex_state = 58}, - [1068] = {.lex_state = 58}, - [1069] = {.lex_state = 58}, - [1070] = {.lex_state = 246}, - [1071] = {.lex_state = 246}, - [1072] = {.lex_state = 246}, - [1073] = {.lex_state = 59}, - [1074] = {.lex_state = 246}, - [1075] = {.lex_state = 57}, + [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 = 58}, + [1078] = {.lex_state = 60}, [1079] = {.lex_state = 59}, - [1080] = {.lex_state = 57}, - [1081] = {.lex_state = 246}, + [1080] = {.lex_state = 59}, + [1081] = {.lex_state = 60}, [1082] = {.lex_state = 58}, - [1083] = {.lex_state = 58}, + [1083] = {.lex_state = 247}, [1084] = {.lex_state = 59}, - [1085] = {.lex_state = 57}, - [1086] = {.lex_state = 58}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 5}, - [1089] = {.lex_state = 246}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, + [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 = 58}, + [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 58}, + [1095] = {.lex_state = 59}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 58}, - [1098] = {.lex_state = 58}, - [1099] = {.lex_state = 57}, - [1100] = {.lex_state = 9}, - [1101] = {.lex_state = 5}, - [1102] = {.lex_state = 58}, - [1103] = {.lex_state = 58}, - [1104] = {.lex_state = 246}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 5}, - [1107] = {.lex_state = 246}, - [1108] = {.lex_state = 58}, - [1109] = {.lex_state = 5}, - [1110] = {.lex_state = 0}, - [1111] = {.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 = 58}, - [1114] = {.lex_state = 58}, - [1115] = {.lex_state = 58}, - [1116] = {.lex_state = 58}, - [1117] = {.lex_state = 58}, - [1118] = {.lex_state = 58}, - [1119] = {.lex_state = 5}, - [1120] = {.lex_state = 246}, - [1121] = {.lex_state = 58}, - [1122] = {.lex_state = 58}, - [1123] = {.lex_state = 58}, - [1124] = {.lex_state = 246}, + [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 = 58}, - [1127] = {.lex_state = 57}, - [1128] = {.lex_state = 58}, - [1129] = {.lex_state = 58}, - [1130] = {.lex_state = 246}, - [1131] = {.lex_state = 58}, - [1132] = {.lex_state = 58}, - [1133] = {.lex_state = 59}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 58}, - [1136] = {.lex_state = 57}, + [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 = 0}, - [1139] = {.lex_state = 246}, - [1140] = {.lex_state = 57}, - [1141] = {.lex_state = 9}, - [1142] = {.lex_state = 5}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 20}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 246}, - [1147] = {.lex_state = 0}, - [1148] = {.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 = 246}, - [1151] = {.lex_state = 246}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 246}, + [1153] = {.lex_state = 247}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 246}, + [1156] = {.lex_state = 247}, + [1157] = {.lex_state = 247}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 246}, + [1159] = {.lex_state = 0}, [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 9}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 247}, + [1163] = {.lex_state = 9}, [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 9}, + [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 9}, - [1168] = {.lex_state = 9}, - [1169] = {.lex_state = 9}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 0}, [1170] = {.lex_state = 9}, [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 246}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 246}, + [1172] = {.lex_state = 9}, + [1173] = {.lex_state = 9}, + [1174] = {.lex_state = 247}, [1175] = {.lex_state = 9}, - [1176] = {.lex_state = 9}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 9}, + [1178] = {.lex_state = 9}, [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 14}, + [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 246}, + [1182] = {.lex_state = 14}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 9}, - [1185] = {.lex_state = 9}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 9}, - [1189] = {.lex_state = 22}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 14}, - [1193] = {.lex_state = 9}, - [1194] = {.lex_state = 0}, + [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 = 0}, + [1197] = {.lex_state = 9}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, @@ -8936,76 +9186,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 246}, + [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 9}, - [1211] = {.lex_state = 9}, - [1212] = {.lex_state = 246}, - [1213] = {.lex_state = 0}, - [1214] = {.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 = 9}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 9}, - [1220] = {.lex_state = 246}, + [1218] = {.lex_state = 9}, + [1219] = {.lex_state = 0}, + [1220] = {.lex_state = 0}, [1221] = {.lex_state = 9}, - [1222] = {.lex_state = 9}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 9}, - [1226] = {.lex_state = 246}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 246}, - [1229] = {.lex_state = 14}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, + [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 = 9}, + [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 14}, - [1237] = {.lex_state = 59}, + [1236] = {.lex_state = 9}, + [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 9}, + [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 9}, [1242] = {.lex_state = 0}, [1243] = {.lex_state = 9}, - [1244] = {.lex_state = 9}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 9}, + [1246] = {.lex_state = 9}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 9}, + [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 = 246}, + [1254] = {.lex_state = 9}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 246}, - [1257] = {.lex_state = 246}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 246}, - [1260] = {.lex_state = 246}, - [1261] = {.lex_state = 246}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 9}, - [1264] = {.lex_state = 246}, + [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 = 0}, + [1266] = {.lex_state = 247}, [1267] = {.lex_state = 9}, [1268] = {.lex_state = 0}, [1269] = {.lex_state = 9}, - [1270] = {.lex_state = 9}, - [1271] = {.lex_state = 246}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 9}, - [1274] = {.lex_state = 246}, - [1275] = {.lex_state = 5}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0}, + [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}, @@ -9014,213 +9264,213 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 246}, + [1286] = {.lex_state = 0}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 246}, + [1288] = {.lex_state = 247}, [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, + [1290] = {.lex_state = 247}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 5}, - [1293] = {.lex_state = 14}, - [1294] = {.lex_state = 0}, - [1295] = {.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 = 246}, + [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.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 = 5}, - [1305] = {.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 = 246}, - [1313] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 247}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 5}, - [1316] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 247}, [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 14}, - [1320] = {.lex_state = 9}, - [1321] = {.lex_state = 9}, - [1322] = {.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 = 5}, - [1330] = {.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 = 58}, - [1335] = {.lex_state = 246}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 246}, - [1338] = {.lex_state = 8}, - [1339] = {.lex_state = 246}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 8}, - [1342] = {.lex_state = 246}, - [1343] = {.lex_state = 246}, - [1344] = {.lex_state = 0}, - [1345] = {.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 = 57}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 58}, - [1350] = {.lex_state = 246}, - [1351] = {.lex_state = 58}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, + [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 = 246}, - [1360] = {.lex_state = 20}, - [1361] = {.lex_state = 246}, - [1362] = {.lex_state = 246}, - [1363] = {.lex_state = 246}, - [1364] = {.lex_state = 246}, + [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 = 0}, - [1367] = {.lex_state = 246}, + [1366] = {.lex_state = 247}, + [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, + [1369] = {.lex_state = 247}, [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 8}, + [1372] = {.lex_state = 247}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, + [1374] = {.lex_state = 8}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 246}, - [1379] = {.lex_state = 246}, - [1380] = {.lex_state = 58}, - [1381] = {.lex_state = 246}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 246}, + [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 = 58}, - [1388] = {.lex_state = 58}, - [1389] = {.lex_state = 58}, - [1390] = {.lex_state = 58}, - [1391] = {.lex_state = 58}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 246}, + [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 = 246}, + [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 246}, - [1402] = {.lex_state = 246}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 246}, - [1405] = {.lex_state = 20}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 58}, + [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 = 58}, - [1410] = {.lex_state = 58}, - [1411] = {.lex_state = 58}, - [1412] = {.lex_state = 58}, - [1413] = {.lex_state = 0}, - [1414] = {.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 = 58}, - [1422] = {.lex_state = 58}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 58}, + [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 = 58}, - [1428] = {.lex_state = 58}, - [1429] = {.lex_state = 58}, - [1430] = {.lex_state = 57}, - [1431] = {.lex_state = 0}, - [1432] = {.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 = 246}, + [1436] = {.lex_state = 0}, [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 58}, - [1440] = {.lex_state = 58}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 246}, - [1444] = {.lex_state = 58}, - [1445] = {.lex_state = 58}, - [1446] = {.lex_state = 58}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 20}, - [1449] = {.lex_state = 58}, - [1450] = {.lex_state = 0}, - [1451] = {.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 = 246}, - [1454] = {.lex_state = 58}, - [1455] = {.lex_state = 58}, - [1456] = {.lex_state = 58}, - [1457] = {.lex_state = 246}, - [1458] = {.lex_state = 58}, - [1459] = {.lex_state = 58}, - [1460] = {.lex_state = 246}, - [1461] = {.lex_state = 246}, - [1462] = {.lex_state = 246}, - [1463] = {.lex_state = 246}, - [1464] = {.lex_state = 58}, - [1465] = {.lex_state = 246}, - [1466] = {.lex_state = 8}, - [1467] = {.lex_state = 58}, - [1468] = {.lex_state = 20}, - [1469] = {.lex_state = 20}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 10}, + [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 = 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 = 14}, - [1480] = {.lex_state = 20}, - [1481] = {.lex_state = 20}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 20}, - [1484] = {.lex_state = 20}, - [1485] = {.lex_state = 20}, - [1486] = {.lex_state = 20}, - [1487] = {.lex_state = 10}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 20}, + [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 = 0}, - [1492] = {.lex_state = 20}, + [1491] = {.lex_state = 57}, + [1492] = {.lex_state = 0}, [1493] = {.lex_state = 0}, [1494] = {.lex_state = 0}, [1495] = {.lex_state = 0}, @@ -9228,137 +9478,139 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, + [1500] = {.lex_state = 57}, [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 10}, + [1502] = {.lex_state = 0}, [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, + [1504] = {.lex_state = 10}, [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 20}, - [1507] = {.lex_state = 20}, - [1508] = {.lex_state = 20}, - [1509] = {.lex_state = 20}, - [1510] = {.lex_state = 20}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 20}, + [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 = 0}, + [1514] = {.lex_state = 57}, [1515] = {.lex_state = 0}, [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 392}, + [1517] = {.lex_state = 4}, + [1518] = {.lex_state = 0}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, + [1520] = {.lex_state = 404}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 20}, - [1524] = {.lex_state = 20}, - [1525] = {.lex_state = 10}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 10}, + [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 = 0}, + [1530] = {.lex_state = 10}, [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 20}, - [1536] = {.lex_state = 20}, - [1537] = {.lex_state = 20}, - [1538] = {.lex_state = 20}, - [1539] = {.lex_state = 20}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 20}, - [1542] = {.lex_state = 0}, - [1543] = {.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 = 20}, + [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, + [1551] = {.lex_state = 57}, + [1552] = {.lex_state = 4}, [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 20}, + [1554] = {.lex_state = 0}, [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, + [1556] = {.lex_state = 57}, [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 20}, + [1558] = {.lex_state = 0}, [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, + [1560] = {.lex_state = 57}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 14}, + [1562] = {.lex_state = 0}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, + [1564] = {.lex_state = 14}, [1565] = {.lex_state = 0}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 14}, - [1568] = {.lex_state = 246}, - [1569] = {.lex_state = 0}, - [1570] = {.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 = 14}, - [1575] = {.lex_state = 14}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, + [1577] = {.lex_state = 14}, [1578] = {.lex_state = 14}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 20}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 14}, + [1582] = {.lex_state = 57}, [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 392}, - [1585] = {.lex_state = 392}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 20}, - [1588] = {.lex_state = 20}, - [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 14}, + [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 = 20}, - [1596] = {.lex_state = 20}, - [1597] = {.lex_state = 392}, - [1598] = {.lex_state = 20}, - [1599] = {.lex_state = 0}, - [1600] = {.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 = 392}, - [1603] = {.lex_state = 20}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 14}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 14}, + [1604] = {.lex_state = 404}, + [1605] = {.lex_state = 57}, [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 20}, - [1608] = {.lex_state = 20}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 20}, - [1611] = {.lex_state = 14}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 20}, + [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 = 20}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 14}, + [1616] = {.lex_state = 57}, + [1617] = {.lex_state = 14}, + [1618] = {.lex_state = 57}, [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 246}, + [1620] = {.lex_state = 14}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0}, + [1622] = {.lex_state = 247}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 20}, - [1628] = {.lex_state = 20}, - [1629] = {.lex_state = 20}, - [1630] = {.lex_state = 20}, + [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] = { @@ -9433,6 +9685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -9465,7 +9718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1582), + [sym_source_file] = STATE(1584), [sym__statement] = STATE(2), [sym_impl_item] = STATE(2), [sym_trait_item] = STATE(2), @@ -9479,48 +9732,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(2), [sym_enum_item] = STATE(2), [sym_type_item] = STATE(2), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(2), [sym_use_declaration] = STATE(2), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(720), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -9570,12 +9823,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -9592,50 +9845,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(13), [sym_enum_item] = STATE(13), [sym_type_item] = STATE(13), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(720), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(77), + [ts_builtin_sym_end] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -9683,73 +9936,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_const_item] = STATE(6), + [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(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(290), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(656), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(6), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(19), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(79), + [anon_sym_RBRACE] = ACTIONS(81), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -9796,73 +10049,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_RBRACE] = ACTIONS(83), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -9909,73 +10162,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(624), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(85), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10022,73 +10275,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(652), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(87), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10135,12 +10388,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -10157,51 +10410,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(17), [sym_enum_item] = STATE(17), [sym_type_item] = STATE(17), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(17), [sym_use_declaration] = STATE(17), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(635), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(17), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(89), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10248,12 +10501,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -10270,51 +10523,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(4), [sym_enum_item] = STATE(4), [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(4), [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(684), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(91), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10361,12 +10614,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -10383,51 +10636,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(5), [sym_enum_item] = STATE(5), [sym_type_item] = STATE(5), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(5), [sym_use_declaration] = STATE(5), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(626), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(5), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(93), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10474,12 +10727,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -10496,51 +10749,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(14), [sym_enum_item] = STATE(14), [sym_type_item] = STATE(14), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(14), [sym_use_declaration] = STATE(14), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(598), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(14), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(95), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10587,73 +10840,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), + [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(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(290), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(651), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(20), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(6), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10700,73 +10953,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(640), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(99), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10813,12 +11066,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -10835,164 +11088,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(13), [sym_enum_item] = STATE(13), [sym_type_item] = STATE(13), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(720), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_impl] = ACTIONS(104), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_trait] = ACTIONS(110), - [anon_sym_type] = ACTIONS(113), - [anon_sym_const] = ACTIONS(116), - [anon_sym_BANG] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_mod] = ACTIONS(128), - [anon_sym_struct] = ACTIONS(131), - [anon_sym_enum] = ACTIONS(134), - [anon_sym_fn] = ACTIONS(137), - [anon_sym_let] = ACTIONS(140), - [anon_sym_use] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_ByteArray] = ACTIONS(152), - [anon_sym_felt252] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(119), - [anon_sym_AT] = ACTIONS(119), - [anon_sym_break] = ACTIONS(158), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_default] = ACTIONS(164), - [anon_sym_if] = ACTIONS(167), - [anon_sym_extern] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_pub] = ACTIONS(179), - [anon_sym_return] = ACTIONS(182), - [anon_sym_while] = ACTIONS(185), - [sym_numeric_literal] = ACTIONS(188), - [aux_sym_string_literal_token1] = ACTIONS(191), - [sym_shortstring_literal] = ACTIONS(188), - [anon_sym_true] = ACTIONS(194), - [anon_sym_false] = ACTIONS(194), - [anon_sym_ref] = ACTIONS(197), - [sym_identifier] = ACTIONS(200), - [sym_super] = ACTIONS(203), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(643), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(206), + [anon_sym_RBRACE] = ACTIONS(211), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11039,12 +11292,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -11061,51 +11314,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(18), [sym_enum_item] = STATE(18), [sym_type_item] = STATE(18), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(18), [sym_use_declaration] = STATE(18), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(675), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(18), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(213), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11152,12 +11405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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] = { @@ -11174,51 +11427,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(12), [sym_enum_item] = STATE(12), [sym_type_item] = STATE(12), - [sym_extern_type] = STATE(290), + [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(1258), + [sym_function] = STATE(1248), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(641), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), + [sym_extern] = STATE(1239), [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(210), + [anon_sym_RBRACE] = ACTIONS(215), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11265,73 +11518,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(634), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(217), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11378,73 +11631,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(639), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(219), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11491,186 +11744,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(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(95), - [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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(720), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1240), - [aux_sym_source_file_repeat1] = STATE(19), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(99), - [anon_sym_impl] = ACTIONS(104), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_trait] = ACTIONS(110), - [anon_sym_type] = ACTIONS(113), - [anon_sym_const] = ACTIONS(116), - [anon_sym_BANG] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_mod] = ACTIONS(128), - [anon_sym_struct] = ACTIONS(131), - [anon_sym_enum] = ACTIONS(134), - [anon_sym_fn] = ACTIONS(137), - [anon_sym_let] = ACTIONS(140), - [anon_sym_use] = ACTIONS(143), - [anon_sym_COLON_COLON] = ACTIONS(146), - [anon_sym_STAR] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_ByteArray] = ACTIONS(152), - [anon_sym_felt252] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(155), - [anon_sym_TILDE] = ACTIONS(119), - [anon_sym_AT] = ACTIONS(119), - [anon_sym_break] = ACTIONS(158), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_default] = ACTIONS(164), - [anon_sym_if] = ACTIONS(167), - [anon_sym_extern] = ACTIONS(170), - [anon_sym_loop] = ACTIONS(173), - [anon_sym_match] = ACTIONS(176), - [anon_sym_pub] = ACTIONS(179), - [anon_sym_return] = ACTIONS(182), - [anon_sym_while] = ACTIONS(185), - [sym_numeric_literal] = ACTIONS(188), - [aux_sym_string_literal_token1] = ACTIONS(191), - [sym_shortstring_literal] = ACTIONS(188), - [anon_sym_true] = ACTIONS(194), - [anon_sym_false] = ACTIONS(194), - [anon_sym_ref] = ACTIONS(197), - [sym_identifier] = ACTIONS(200), - [sym_super] = ACTIONS(203), - [sym_line_comment] = ACTIONS(3), - }, - [20] = { - [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__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(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(290), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1258), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(650), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(90), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(90), - [sym_if_expression] = STATE(90), - [sym_match_expression] = STATE(90), - [sym_while_expression] = STATE(90), - [sym_loop_expression] = STATE(90), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(1240), - [aux_sym_source_file_repeat1] = STATE(19), + [sym_extern] = STATE(1239), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(221), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11717,60 +11857,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(482), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(218), - [anon_sym_SEMI] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_BANG] = ACTIONS(222), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_RBRACK] = ACTIONS(218), - [anon_sym_COMMA] = ACTIONS(218), + [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(220), - [anon_sym_LPAREN] = ACTIONS(218), - [anon_sym_RPAREN] = ACTIONS(218), + [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), @@ -11785,96 +12038,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(220), - [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_PERCENT] = ACTIONS(220), - [anon_sym_CARET] = ACTIONS(218), + [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(220), - [anon_sym_PIPE] = ACTIONS(220), - [anon_sym_AMP_AMP] = ACTIONS(218), - [anon_sym_PIPE_PIPE] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_PLUS_EQ] = ACTIONS(218), - [anon_sym_DASH_EQ] = ACTIONS(218), - [anon_sym_STAR_EQ] = ACTIONS(218), - [anon_sym_SLASH_EQ] = ACTIONS(218), - [anon_sym_PERCENT_EQ] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_LT_EQ] = ACTIONS(218), + [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(218), - [anon_sym_QMARK] = ACTIONS(218), + [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(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(456), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(226), - [anon_sym_SEMI] = ACTIONS(226), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(222), + [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(226), - [anon_sym_COMMA] = ACTIONS(226), + [anon_sym_RBRACK] = ACTIONS(272), + [anon_sym_COMMA] = ACTIONS(272), [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(222), + [anon_sym_STAR] = ACTIONS(227), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(226), + [anon_sym_RPAREN] = ACTIONS(272), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -11889,1241 +12246,945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_PLUS] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(230), - [anon_sym_SLASH] = ACTIONS(228), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_CARET] = ACTIONS(226), + [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(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_GT_GT] = ACTIONS(226), - [anon_sym_PLUS_EQ] = ACTIONS(226), - [anon_sym_DASH_EQ] = ACTIONS(226), - [anon_sym_STAR_EQ] = ACTIONS(226), - [anon_sym_SLASH_EQ] = ACTIONS(226), - [anon_sym_PERCENT_EQ] = ACTIONS(226), - [anon_sym_EQ_EQ] = ACTIONS(226), - [anon_sym_BANG_EQ] = ACTIONS(226), - [anon_sym_GT_EQ] = ACTIONS(226), - [anon_sym_LT_EQ] = ACTIONS(226), + [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(226), - [anon_sym_QMARK] = ACTIONS(226), + [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(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [23] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(235), - [anon_sym_impl] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(240), - [anon_sym_trait] = ACTIONS(237), - [anon_sym_type] = ACTIONS(237), - [anon_sym_const] = ACTIONS(237), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(240), - [anon_sym_LBRACK] = ACTIONS(246), - [anon_sym_RBRACK] = ACTIONS(235), - [anon_sym_mod] = ACTIONS(237), - [anon_sym_struct] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_fn] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(240), - [anon_sym_let] = ACTIONS(237), - [anon_sym_use] = ACTIONS(237), - [anon_sym_COLON_COLON] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym__] = ACTIONS(243), - [anon_sym_RPAREN] = ACTIONS(235), - [anon_sym_u8] = ACTIONS(252), - [anon_sym_i8] = ACTIONS(252), - [anon_sym_u16] = ACTIONS(252), - [anon_sym_i16] = ACTIONS(252), - [anon_sym_u32] = ACTIONS(252), - [anon_sym_i32] = ACTIONS(252), - [anon_sym_u64] = ACTIONS(252), - [anon_sym_i64] = ACTIONS(252), - [anon_sym_u128] = ACTIONS(252), - [anon_sym_i128] = ACTIONS(252), - [anon_sym_usize] = ACTIONS(252), - [anon_sym_bool] = ACTIONS(252), - [anon_sym_ByteArray] = ACTIONS(252), - [anon_sym_felt252] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(240), - [anon_sym_PLUS_EQ] = ACTIONS(240), - [anon_sym_DASH_EQ] = ACTIONS(240), - [anon_sym_STAR_EQ] = ACTIONS(240), - [anon_sym_SLASH_EQ] = ACTIONS(240), - [anon_sym_PERCENT_EQ] = ACTIONS(240), - [anon_sym_CARET_EQ] = ACTIONS(240), - [anon_sym_AMP_EQ] = ACTIONS(240), - [anon_sym_PIPE_EQ] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_AT] = ACTIONS(240), - [anon_sym_DOT] = ACTIONS(240), - [anon_sym_EQ_GT] = ACTIONS(240), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_break] = ACTIONS(237), - [anon_sym_continue] = ACTIONS(237), - [anon_sym_default] = ACTIONS(237), - [anon_sym_if] = ACTIONS(237), - [anon_sym_extern] = ACTIONS(237), - [anon_sym_nopanic] = ACTIONS(237), - [anon_sym_loop] = ACTIONS(237), - [anon_sym_match] = ACTIONS(237), - [anon_sym_pub] = ACTIONS(237), - [anon_sym_return] = ACTIONS(237), - [anon_sym_static] = ACTIONS(237), - [anon_sym_while] = ACTIONS(237), - [sym_numeric_literal] = ACTIONS(258), - [aux_sym_string_literal_token1] = ACTIONS(261), - [sym_shortstring_literal] = ACTIONS(258), - [anon_sym_true] = ACTIONS(264), - [anon_sym_false] = ACTIONS(264), - [anon_sym_DOLLAR] = ACTIONS(267), - [sym_identifier] = ACTIONS(237), - [sym_mutable_specifier] = ACTIONS(237), - [sym_super] = ACTIONS(237), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(50), - [sym__delim_tokens] = STATE(50), - [sym__literal] = STATE(50), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(50), - [aux_sym_delim_token_tree_repeat1] = STATE(50), + [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(270), - [anon_sym_impl] = ACTIONS(298), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(298), - [anon_sym_type] = ACTIONS(298), - [anon_sym_const] = ACTIONS(298), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(300), - [anon_sym_mod] = ACTIONS(298), - [anon_sym_struct] = ACTIONS(298), - [anon_sym_enum] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(298), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(298), - [anon_sym_use] = ACTIONS(298), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(298), - [anon_sym_continue] = ACTIONS(298), - [anon_sym_default] = ACTIONS(298), - [anon_sym_if] = ACTIONS(298), - [anon_sym_extern] = ACTIONS(298), - [anon_sym_nopanic] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(298), - [anon_sym_match] = ACTIONS(298), - [anon_sym_pub] = ACTIONS(298), - [anon_sym_return] = ACTIONS(298), - [anon_sym_static] = ACTIONS(298), - [anon_sym_while] = ACTIONS(298), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(302), - [sym_identifier] = ACTIONS(298), - [sym_mutable_specifier] = ACTIONS(298), - [sym_super] = ACTIONS(298), + [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(25), - [sym__delim_tokens] = STATE(25), - [sym__literal] = STATE(25), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(25), - [aux_sym_delim_token_tree_repeat1] = STATE(25), + [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(270), - [anon_sym_impl] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(304), - [anon_sym_type] = ACTIONS(304), - [anon_sym_const] = ACTIONS(304), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(304), - [anon_sym_struct] = ACTIONS(304), - [anon_sym_enum] = ACTIONS(304), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(304), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(304), - [anon_sym_use] = ACTIONS(304), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(306), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(304), - [anon_sym_continue] = ACTIONS(304), - [anon_sym_default] = ACTIONS(304), - [anon_sym_if] = ACTIONS(304), - [anon_sym_extern] = ACTIONS(304), - [anon_sym_nopanic] = ACTIONS(304), - [anon_sym_loop] = ACTIONS(304), - [anon_sym_match] = ACTIONS(304), - [anon_sym_pub] = ACTIONS(304), - [anon_sym_return] = ACTIONS(304), - [anon_sym_static] = ACTIONS(304), - [anon_sym_while] = ACTIONS(304), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(308), - [sym_identifier] = ACTIONS(304), - [sym_mutable_specifier] = ACTIONS(304), - [sym_super] = ACTIONS(304), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(272), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(272), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(51), - [sym__delim_tokens] = STATE(51), - [sym__literal] = STATE(51), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(51), - [aux_sym_delim_token_tree_repeat1] = STATE(51), + [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(270), - [anon_sym_impl] = ACTIONS(310), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(310), - [anon_sym_type] = ACTIONS(310), - [anon_sym_const] = ACTIONS(310), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(310), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(310), - [anon_sym_use] = ACTIONS(310), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(312), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_extern] = ACTIONS(310), - [anon_sym_nopanic] = ACTIONS(310), - [anon_sym_loop] = ACTIONS(310), - [anon_sym_match] = ACTIONS(310), - [anon_sym_pub] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(314), - [sym_identifier] = ACTIONS(310), - [sym_mutable_specifier] = ACTIONS(310), - [sym_super] = ACTIONS(310), + [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(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), + [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(270), - [anon_sym_impl] = ACTIONS(316), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_const] = ACTIONS(316), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(316), - [anon_sym_struct] = ACTIONS(316), - [anon_sym_enum] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(316), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(316), - [anon_sym_use] = ACTIONS(316), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(316), - [anon_sym_continue] = ACTIONS(316), - [anon_sym_default] = ACTIONS(316), - [anon_sym_if] = ACTIONS(316), - [anon_sym_extern] = ACTIONS(316), - [anon_sym_nopanic] = ACTIONS(316), - [anon_sym_loop] = ACTIONS(316), - [anon_sym_match] = ACTIONS(316), - [anon_sym_pub] = ACTIONS(316), - [anon_sym_return] = ACTIONS(316), - [anon_sym_static] = ACTIONS(316), - [anon_sym_while] = ACTIONS(316), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(320), - [sym_identifier] = ACTIONS(316), - [sym_mutable_specifier] = ACTIONS(316), - [sym_super] = ACTIONS(316), - [sym_line_comment] = ACTIONS(3), - }, - [32] = { - [sym_delim_token_tree] = STATE(52), - [sym__delim_tokens] = STATE(52), - [sym__literal] = STATE(52), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [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(270), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_impl] = ACTIONS(322), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(322), - [anon_sym_type] = ACTIONS(322), - [anon_sym_const] = ACTIONS(322), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(322), - [anon_sym_struct] = ACTIONS(322), - [anon_sym_enum] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(322), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(322), - [anon_sym_use] = ACTIONS(322), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(322), - [anon_sym_continue] = ACTIONS(322), - [anon_sym_default] = ACTIONS(322), - [anon_sym_if] = ACTIONS(322), - [anon_sym_extern] = ACTIONS(322), - [anon_sym_nopanic] = ACTIONS(322), - [anon_sym_loop] = ACTIONS(322), - [anon_sym_match] = ACTIONS(322), - [anon_sym_pub] = ACTIONS(322), - [anon_sym_return] = ACTIONS(322), - [anon_sym_static] = ACTIONS(322), - [anon_sym_while] = ACTIONS(322), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(324), - [sym_identifier] = ACTIONS(322), - [sym_mutable_specifier] = ACTIONS(322), - [sym_super] = ACTIONS(322), - [sym_line_comment] = ACTIONS(3), - }, - [33] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(326), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), - [sym_line_comment] = ACTIONS(3), - }, - [34] = { - [sym_delim_token_tree] = STATE(29), - [sym__delim_tokens] = STATE(29), - [sym__literal] = STATE(29), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [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(270), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(328), [anon_sym_type] = ACTIONS(328), [anon_sym_const] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(318), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(328), [anon_sym_use] = ACTIONS(328), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -13136,499 +13197,606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(328), [anon_sym_static] = ACTIONS(328), [anon_sym_while] = ACTIONS(328), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(330), + [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), }, - [35] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), + [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(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(24), - [sym__delim_tokens] = STATE(24), - [sym__literal] = STATE(24), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(24), - [aux_sym_delim_token_tree_repeat1] = STATE(24), + [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(270), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_impl] = ACTIONS(332), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(332), - [anon_sym_type] = ACTIONS(332), - [anon_sym_const] = ACTIONS(332), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(332), - [anon_sym_struct] = ACTIONS(332), - [anon_sym_enum] = ACTIONS(332), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(332), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(332), - [anon_sym_use] = ACTIONS(332), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(332), - [anon_sym_default] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_extern] = ACTIONS(332), - [anon_sym_nopanic] = ACTIONS(332), - [anon_sym_loop] = ACTIONS(332), - [anon_sym_match] = ACTIONS(332), - [anon_sym_pub] = ACTIONS(332), - [anon_sym_return] = ACTIONS(332), - [anon_sym_static] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(334), - [sym_identifier] = ACTIONS(332), - [sym_mutable_specifier] = ACTIONS(332), - [sym_super] = ACTIONS(332), + [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), }, - [37] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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), }, - [38] = { - [sym_delim_token_tree] = STATE(33), - [sym__delim_tokens] = STATE(33), - [sym__literal] = STATE(33), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(33), - [aux_sym_delim_token_tree_repeat1] = STATE(33), + [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(270), - [anon_sym_impl] = ACTIONS(336), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(336), - [anon_sym_type] = ACTIONS(336), - [anon_sym_const] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(336), - [anon_sym_struct] = ACTIONS(336), - [anon_sym_enum] = ACTIONS(336), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(336), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(336), - [anon_sym_use] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(338), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_default] = ACTIONS(336), - [anon_sym_if] = ACTIONS(336), - [anon_sym_extern] = ACTIONS(336), - [anon_sym_nopanic] = ACTIONS(336), - [anon_sym_loop] = ACTIONS(336), - [anon_sym_match] = ACTIONS(336), - [anon_sym_pub] = ACTIONS(336), - [anon_sym_return] = ACTIONS(336), - [anon_sym_static] = ACTIONS(336), - [anon_sym_while] = ACTIONS(336), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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(336), - [sym_mutable_specifier] = ACTIONS(336), - [sym_super] = ACTIONS(336), + [sym_identifier] = ACTIONS(338), + [sym_mutable_specifier] = ACTIONS(338), + [sym_super] = ACTIONS(338), [sym_line_comment] = ACTIONS(3), }, - [39] = { - [sym_delim_token_tree] = STATE(49), - [sym__delim_tokens] = STATE(49), - [sym__literal] = STATE(49), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(49), - [aux_sym_delim_token_tree_repeat1] = STATE(49), + [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(270), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(342), [anon_sym_type] = ACTIONS(342), [anon_sym_const] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(342), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(342), [anon_sym_use] = ACTIONS(342), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(300), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -13641,398 +13809,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(342), [anon_sym_static] = ACTIONS(342), [anon_sym_while] = ACTIONS(342), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(344), + [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), }, - [40] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(296), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), - [sym_line_comment] = ACTIONS(3), - }, - [41] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(270), - [anon_sym_RBRACE] = ACTIONS(346), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), - [sym_line_comment] = ACTIONS(3), - }, - [42] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_RBRACE] = ACTIONS(296), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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), }, - [43] = { - [sym_delim_token_tree] = STATE(35), - [sym__delim_tokens] = STATE(35), - [sym__literal] = STATE(35), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(35), - [aux_sym_delim_token_tree_repeat1] = STATE(35), + [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(270), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(348), [anon_sym_type] = ACTIONS(348), [anon_sym_const] = ACTIONS(348), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = 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_mod] = ACTIONS(348), [anon_sym_struct] = ACTIONS(348), [anon_sym_enum] = ACTIONS(348), - [anon_sym_COMMA] = ACTIONS(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(348), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(348), [anon_sym_use] = ACTIONS(348), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -14045,95 +14013,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(348), [anon_sym_static] = ACTIONS(348), [anon_sym_while] = ACTIONS(348), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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), }, - [44] = { - [sym_delim_token_tree] = STATE(41), - [sym__delim_tokens] = STATE(41), - [sym__literal] = STATE(41), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(41), - [aux_sym_delim_token_tree_repeat1] = STATE(41), + [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(270), - [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(352), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(352), [anon_sym_type] = ACTIONS(352), [anon_sym_const] = ACTIONS(352), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(352), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(352), [anon_sym_use] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -14146,95 +14115,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(352), [anon_sym_static] = ACTIONS(352), [anon_sym_while] = ACTIONS(352), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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), }, - [45] = { - [sym_delim_token_tree] = STATE(37), - [sym__delim_tokens] = STATE(37), - [sym__literal] = STATE(37), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(37), - [aux_sym_delim_token_tree_repeat1] = STATE(37), + [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(270), - [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(356), [anon_sym_type] = ACTIONS(356), [anon_sym_const] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(356), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(356), [anon_sym_use] = ACTIONS(356), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -14247,95 +14217,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(356), [anon_sym_static] = ACTIONS(356), [anon_sym_while] = ACTIONS(356), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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), }, - [46] = { - [sym_delim_token_tree] = STATE(53), - [sym__delim_tokens] = STATE(53), - [sym__literal] = STATE(53), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(53), - [aux_sym_delim_token_tree_repeat1] = STATE(53), + [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(270), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(344), [anon_sym_impl] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(360), [anon_sym_type] = ACTIONS(360), [anon_sym_const] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(312), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(360), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(360), [anon_sym_use] = ACTIONS(360), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -14348,95 +14319,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(360), [anon_sym_static] = ACTIONS(360), [anon_sym_while] = ACTIONS(360), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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), }, - [47] = { - [sym_delim_token_tree] = STATE(42), - [sym__delim_tokens] = STATE(42), - [sym__literal] = STATE(42), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(42), - [aux_sym_delim_token_tree_repeat1] = STATE(42), + [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(270), - [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(330), [anon_sym_impl] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(364), [anon_sym_type] = ACTIONS(364), [anon_sym_const] = ACTIONS(364), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(364), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(364), [anon_sym_use] = ACTIONS(364), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -14449,95 +14421,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(364), [anon_sym_static] = ACTIONS(364), [anon_sym_while] = ACTIONS(364), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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), }, - [48] = { - [sym_delim_token_tree] = STATE(40), - [sym__delim_tokens] = STATE(40), - [sym__literal] = STATE(40), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(40), - [aux_sym_delim_token_tree_repeat1] = STATE(40), + [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(270), + [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(276), + [anon_sym_SEMI] = ACTIONS(284), [anon_sym_trait] = ACTIONS(368), [anon_sym_type] = ACTIONS(368), [anon_sym_const] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(306), + [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(276), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_fn] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(276), + [anon_sym_DASH_GT] = ACTIONS(284), [anon_sym_let] = ACTIONS(368), [anon_sym_use] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), + [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), @@ -14550,1230 +14523,1354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(368), [anon_sym_static] = ACTIONS(368), [anon_sym_while] = ACTIONS(368), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(372), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_RPAREN] = ACTIONS(346), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(60), - [sym_string_literal] = STATE(60), - [sym_boolean_literal] = STATE(60), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [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(270), - [anon_sym_impl] = ACTIONS(274), - [anon_sym_SEMI] = ACTIONS(276), - [anon_sym_trait] = ACTIONS(274), - [anon_sym_type] = ACTIONS(274), - [anon_sym_const] = ACTIONS(274), - [anon_sym_COLON] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_POUND] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_RBRACK] = ACTIONS(346), - [anon_sym_mod] = ACTIONS(274), - [anon_sym_struct] = ACTIONS(274), - [anon_sym_enum] = ACTIONS(274), - [anon_sym_COMMA] = ACTIONS(276), - [anon_sym_fn] = ACTIONS(274), - [anon_sym_DASH_GT] = ACTIONS(276), - [anon_sym_let] = ACTIONS(274), - [anon_sym_use] = ACTIONS(274), - [anon_sym_COLON_COLON] = ACTIONS(276), - [anon_sym_STAR] = ACTIONS(278), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym__] = ACTIONS(278), - [anon_sym_u8] = ACTIONS(284), - [anon_sym_i8] = ACTIONS(284), - [anon_sym_u16] = ACTIONS(284), - [anon_sym_i16] = ACTIONS(284), - [anon_sym_u32] = ACTIONS(284), - [anon_sym_i32] = ACTIONS(284), - [anon_sym_u64] = ACTIONS(284), - [anon_sym_i64] = ACTIONS(284), - [anon_sym_u128] = ACTIONS(284), - [anon_sym_i128] = ACTIONS(284), - [anon_sym_usize] = ACTIONS(284), - [anon_sym_bool] = ACTIONS(284), - [anon_sym_ByteArray] = ACTIONS(284), - [anon_sym_felt252] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(278), - [anon_sym_GT] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_SLASH] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(278), - [anon_sym_CARET] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(276), - [anon_sym_AMP] = ACTIONS(278), - [anon_sym_PIPE] = ACTIONS(278), - [anon_sym_AMP_AMP] = ACTIONS(276), - [anon_sym_PIPE_PIPE] = ACTIONS(276), - [anon_sym_LT_LT] = ACTIONS(276), - [anon_sym_GT_GT] = ACTIONS(276), - [anon_sym_PLUS_EQ] = ACTIONS(276), - [anon_sym_DASH_EQ] = ACTIONS(276), - [anon_sym_STAR_EQ] = ACTIONS(276), - [anon_sym_SLASH_EQ] = ACTIONS(276), - [anon_sym_PERCENT_EQ] = ACTIONS(276), - [anon_sym_CARET_EQ] = ACTIONS(276), - [anon_sym_AMP_EQ] = ACTIONS(276), - [anon_sym_PIPE_EQ] = ACTIONS(276), - [anon_sym_EQ_EQ] = ACTIONS(276), - [anon_sym_BANG_EQ] = ACTIONS(276), - [anon_sym_GT_EQ] = ACTIONS(276), - [anon_sym_LT_EQ] = ACTIONS(276), - [anon_sym_AT] = ACTIONS(276), - [anon_sym_DOT] = ACTIONS(276), - [anon_sym_EQ_GT] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(276), - [anon_sym_break] = ACTIONS(274), - [anon_sym_continue] = ACTIONS(274), - [anon_sym_default] = ACTIONS(274), - [anon_sym_if] = ACTIONS(274), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_nopanic] = ACTIONS(274), - [anon_sym_loop] = ACTIONS(274), - [anon_sym_match] = ACTIONS(274), - [anon_sym_pub] = ACTIONS(274), - [anon_sym_return] = ACTIONS(274), - [anon_sym_static] = ACTIONS(274), - [anon_sym_while] = ACTIONS(274), - [sym_numeric_literal] = ACTIONS(288), - [aux_sym_string_literal_token1] = ACTIONS(290), - [sym_shortstring_literal] = ACTIONS(288), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_DOLLAR] = ACTIONS(294), - [sym_identifier] = ACTIONS(274), - [sym_mutable_specifier] = ACTIONS(274), - [sym_super] = ACTIONS(274), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(755), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(218), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(220), - [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_PERCENT] = ACTIONS(220), - [anon_sym_CARET] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(220), - [anon_sym_PIPE] = ACTIONS(220), - [anon_sym_AMP_AMP] = ACTIONS(218), - [anon_sym_PIPE_PIPE] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_PLUS_EQ] = ACTIONS(218), - [anon_sym_DASH_EQ] = ACTIONS(218), - [anon_sym_STAR_EQ] = ACTIONS(218), - [anon_sym_SLASH_EQ] = ACTIONS(218), - [anon_sym_PERCENT_EQ] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(218), - [anon_sym_EQ_GT] = ACTIONS(218), - [anon_sym_QMARK] = ACTIONS(218), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(761), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(228), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_PLUS] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(228), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_CARET] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_GT_GT] = ACTIONS(226), - [anon_sym_PLUS_EQ] = ACTIONS(226), - [anon_sym_DASH_EQ] = ACTIONS(226), - [anon_sym_STAR_EQ] = ACTIONS(226), - [anon_sym_SLASH_EQ] = ACTIONS(226), - [anon_sym_PERCENT_EQ] = ACTIONS(226), - [anon_sym_EQ_EQ] = ACTIONS(226), - [anon_sym_BANG_EQ] = ACTIONS(226), - [anon_sym_GT_EQ] = ACTIONS(226), - [anon_sym_LT_EQ] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(226), - [anon_sym_EQ_GT] = ACTIONS(226), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(717), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(218), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(220), - [anon_sym_LPAREN] = ACTIONS(218), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(220), - [anon_sym_GT] = ACTIONS(220), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_DASH] = ACTIONS(220), - [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_PERCENT] = ACTIONS(220), - [anon_sym_CARET] = ACTIONS(218), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(220), - [anon_sym_PIPE] = ACTIONS(220), - [anon_sym_AMP_AMP] = ACTIONS(218), - [anon_sym_PIPE_PIPE] = ACTIONS(218), - [anon_sym_LT_LT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(218), - [anon_sym_PLUS_EQ] = ACTIONS(218), - [anon_sym_DASH_EQ] = ACTIONS(218), - [anon_sym_STAR_EQ] = ACTIONS(218), - [anon_sym_SLASH_EQ] = ACTIONS(218), - [anon_sym_PERCENT_EQ] = ACTIONS(218), - [anon_sym_EQ_EQ] = ACTIONS(218), - [anon_sym_BANG_EQ] = ACTIONS(218), - [anon_sym_GT_EQ] = ACTIONS(218), - [anon_sym_LT_EQ] = ACTIONS(218), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(218), - [anon_sym_QMARK] = ACTIONS(218), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(719), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(228), - [anon_sym_BANG] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_GT] = ACTIONS(228), - [anon_sym_PLUS] = ACTIONS(228), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(228), - [anon_sym_PERCENT] = ACTIONS(228), - [anon_sym_CARET] = ACTIONS(226), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_AMP_AMP] = ACTIONS(226), - [anon_sym_PIPE_PIPE] = ACTIONS(226), - [anon_sym_LT_LT] = ACTIONS(226), - [anon_sym_GT_GT] = ACTIONS(226), - [anon_sym_PLUS_EQ] = ACTIONS(226), - [anon_sym_DASH_EQ] = ACTIONS(226), - [anon_sym_STAR_EQ] = ACTIONS(226), - [anon_sym_SLASH_EQ] = ACTIONS(226), - [anon_sym_PERCENT_EQ] = ACTIONS(226), - [anon_sym_EQ_EQ] = ACTIONS(226), - [anon_sym_BANG_EQ] = ACTIONS(226), - [anon_sym_GT_EQ] = ACTIONS(226), - [anon_sym_LT_EQ] = ACTIONS(226), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(226), - [anon_sym_QMARK] = ACTIONS(226), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_impl] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_const] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(447), - [anon_sym_EQ] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_POUND] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_RBRACK] = ACTIONS(440), - [anon_sym_mod] = ACTIONS(442), - [anon_sym_struct] = ACTIONS(442), - [anon_sym_enum] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_fn] = ACTIONS(442), - [anon_sym_DASH_GT] = ACTIONS(444), - [anon_sym_let] = ACTIONS(442), - [anon_sym_use] = ACTIONS(442), - [anon_sym_COLON_COLON] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym__] = ACTIONS(447), - [anon_sym_RPAREN] = ACTIONS(440), - [anon_sym_u8] = ACTIONS(442), - [anon_sym_i8] = ACTIONS(442), - [anon_sym_u16] = ACTIONS(442), - [anon_sym_i16] = ACTIONS(442), - [anon_sym_u32] = ACTIONS(442), - [anon_sym_i32] = ACTIONS(442), - [anon_sym_u64] = ACTIONS(442), - [anon_sym_i64] = ACTIONS(442), - [anon_sym_u128] = ACTIONS(442), - [anon_sym_i128] = ACTIONS(442), - [anon_sym_usize] = ACTIONS(442), - [anon_sym_bool] = ACTIONS(442), - [anon_sym_ByteArray] = ACTIONS(442), - [anon_sym_felt252] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(447), - [anon_sym_GT] = ACTIONS(447), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_PERCENT] = ACTIONS(447), - [anon_sym_CARET] = ACTIONS(447), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_PIPE] = ACTIONS(447), - [anon_sym_AMP_AMP] = ACTIONS(444), - [anon_sym_PIPE_PIPE] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(444), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(444), - [anon_sym_DASH_EQ] = ACTIONS(444), - [anon_sym_STAR_EQ] = ACTIONS(444), - [anon_sym_SLASH_EQ] = ACTIONS(444), - [anon_sym_PERCENT_EQ] = ACTIONS(444), - [anon_sym_CARET_EQ] = ACTIONS(444), - [anon_sym_AMP_EQ] = ACTIONS(444), - [anon_sym_PIPE_EQ] = ACTIONS(444), - [anon_sym_EQ_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(444), - [anon_sym_DOT] = ACTIONS(444), - [anon_sym_EQ_GT] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_break] = ACTIONS(442), - [anon_sym_continue] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_if] = ACTIONS(442), - [anon_sym_extern] = ACTIONS(442), - [anon_sym_nopanic] = ACTIONS(442), - [anon_sym_loop] = ACTIONS(442), - [anon_sym_match] = ACTIONS(442), - [anon_sym_pub] = ACTIONS(442), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(442), - [anon_sym_while] = ACTIONS(442), - [sym_numeric_literal] = ACTIONS(440), - [aux_sym_string_literal_token1] = ACTIONS(440), - [sym_shortstring_literal] = ACTIONS(440), - [anon_sym_true] = ACTIONS(442), - [anon_sym_false] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [sym_mutable_specifier] = ACTIONS(442), - [sym_super] = ACTIONS(442), + [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(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_impl] = ACTIONS(452), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_trait] = ACTIONS(452), - [anon_sym_type] = ACTIONS(452), - [anon_sym_const] = ACTIONS(452), - [anon_sym_COLON] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_RBRACK] = ACTIONS(450), - [anon_sym_mod] = ACTIONS(452), - [anon_sym_struct] = ACTIONS(452), - [anon_sym_enum] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_fn] = ACTIONS(452), - [anon_sym_DASH_GT] = ACTIONS(454), - [anon_sym_let] = ACTIONS(452), - [anon_sym_use] = ACTIONS(452), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym__] = ACTIONS(456), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_u8] = ACTIONS(452), - [anon_sym_i8] = ACTIONS(452), - [anon_sym_u16] = ACTIONS(452), - [anon_sym_i16] = ACTIONS(452), - [anon_sym_u32] = ACTIONS(452), - [anon_sym_i32] = ACTIONS(452), - [anon_sym_u64] = ACTIONS(452), - [anon_sym_i64] = ACTIONS(452), - [anon_sym_u128] = ACTIONS(452), - [anon_sym_i128] = ACTIONS(452), - [anon_sym_usize] = ACTIONS(452), - [anon_sym_bool] = ACTIONS(452), - [anon_sym_ByteArray] = ACTIONS(452), - [anon_sym_felt252] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_AT] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(454), - [anon_sym_EQ_GT] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_break] = ACTIONS(452), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_default] = ACTIONS(452), - [anon_sym_if] = ACTIONS(452), - [anon_sym_extern] = ACTIONS(452), - [anon_sym_nopanic] = ACTIONS(452), - [anon_sym_loop] = ACTIONS(452), - [anon_sym_match] = ACTIONS(452), - [anon_sym_pub] = ACTIONS(452), - [anon_sym_return] = ACTIONS(452), - [anon_sym_static] = ACTIONS(452), - [anon_sym_while] = ACTIONS(452), - [sym_numeric_literal] = ACTIONS(450), - [aux_sym_string_literal_token1] = ACTIONS(450), - [sym_shortstring_literal] = ACTIONS(450), - [anon_sym_true] = ACTIONS(452), - [anon_sym_false] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(450), - [sym_identifier] = ACTIONS(452), - [sym_mutable_specifier] = ACTIONS(452), - [sym_super] = ACTIONS(452), - [sym_line_comment] = ACTIONS(3), - }, - [60] = { - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_impl] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_trait] = ACTIONS(460), - [anon_sym_type] = ACTIONS(460), - [anon_sym_const] = ACTIONS(460), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_POUND] = ACTIONS(458), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_RBRACK] = ACTIONS(458), - [anon_sym_mod] = ACTIONS(460), - [anon_sym_struct] = ACTIONS(460), - [anon_sym_enum] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_fn] = ACTIONS(460), - [anon_sym_DASH_GT] = ACTIONS(458), - [anon_sym_let] = ACTIONS(460), - [anon_sym_use] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(458), - [anon_sym__] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(458), - [anon_sym_u8] = ACTIONS(460), - [anon_sym_i8] = ACTIONS(460), - [anon_sym_u16] = ACTIONS(460), - [anon_sym_i16] = ACTIONS(460), - [anon_sym_u32] = ACTIONS(460), - [anon_sym_i32] = ACTIONS(460), - [anon_sym_u64] = ACTIONS(460), - [anon_sym_i64] = ACTIONS(460), - [anon_sym_u128] = ACTIONS(460), - [anon_sym_i128] = ACTIONS(460), - [anon_sym_usize] = ACTIONS(460), - [anon_sym_bool] = ACTIONS(460), - [anon_sym_ByteArray] = ACTIONS(460), - [anon_sym_felt252] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(458), - [anon_sym_GT_GT] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_AT] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_EQ_GT] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_break] = ACTIONS(460), - [anon_sym_continue] = ACTIONS(460), - [anon_sym_default] = ACTIONS(460), - [anon_sym_if] = ACTIONS(460), - [anon_sym_extern] = ACTIONS(460), - [anon_sym_nopanic] = ACTIONS(460), - [anon_sym_loop] = ACTIONS(460), - [anon_sym_match] = ACTIONS(460), - [anon_sym_pub] = ACTIONS(460), - [anon_sym_return] = ACTIONS(460), - [anon_sym_static] = ACTIONS(460), - [anon_sym_while] = ACTIONS(460), - [sym_numeric_literal] = ACTIONS(458), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_shortstring_literal] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_DOLLAR] = ACTIONS(458), - [sym_identifier] = ACTIONS(460), - [sym_mutable_specifier] = ACTIONS(460), - [sym_super] = ACTIONS(460), - [sym_line_comment] = ACTIONS(3), - }, - [61] = { [anon_sym_LBRACE] = ACTIONS(462), [anon_sym_RBRACE] = ACTIONS(462), [anon_sym_impl] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_SEMI] = ACTIONS(466), [anon_sym_trait] = ACTIONS(464), [anon_sym_type] = ACTIONS(464), [anon_sym_const] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(462), + [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(462), + [anon_sym_COMMA] = ACTIONS(466), [anon_sym_fn] = ACTIONS(464), - [anon_sym_DASH_GT] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(466), [anon_sym_let] = ACTIONS(464), [anon_sym_use] = ACTIONS(464), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_STAR] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(468), [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym__] = ACTIONS(464), + [anon_sym__] = ACTIONS(468), [anon_sym_RPAREN] = ACTIONS(462), [anon_sym_u8] = ACTIONS(464), [anon_sym_i8] = ACTIONS(464), @@ -15789,100 +15886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(464), [anon_sym_ByteArray] = ACTIONS(464), [anon_sym_felt252] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_TILDE] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(462), - [anon_sym_GT_GT] = ACTIONS(462), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_EQ_GT] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(462), - [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(462), - [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), - }, - [62] = { - [anon_sym_LBRACE] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_impl] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_trait] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_const] = ACTIONS(468), - [anon_sym_COLON] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_mod] = ACTIONS(468), - [anon_sym_struct] = ACTIONS(468), - [anon_sym_enum] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_fn] = ACTIONS(468), - [anon_sym_DASH_GT] = ACTIONS(466), - [anon_sym_let] = ACTIONS(468), - [anon_sym_use] = ACTIONS(468), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym__] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_u8] = ACTIONS(468), - [anon_sym_i8] = ACTIONS(468), - [anon_sym_u16] = ACTIONS(468), - [anon_sym_i16] = ACTIONS(468), - [anon_sym_u32] = ACTIONS(468), - [anon_sym_i32] = ACTIONS(468), - [anon_sym_u64] = ACTIONS(468), - [anon_sym_i64] = ACTIONS(468), - [anon_sym_u128] = ACTIONS(468), - [anon_sym_i128] = ACTIONS(468), - [anon_sym_usize] = ACTIONS(468), - [anon_sym_bool] = ACTIONS(468), - [anon_sym_ByteArray] = ACTIONS(468), - [anon_sym_felt252] = ACTIONS(468), [anon_sym_LT] = ACTIONS(468), [anon_sym_GT] = ACTIONS(468), [anon_sym_PLUS] = ACTIONS(468), @@ -15910,33 +15913,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(466), [anon_sym_LT_EQ] = ACTIONS(466), [anon_sym_AT] = ACTIONS(466), - [anon_sym_DOT] = 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(468), - [anon_sym_continue] = ACTIONS(468), - [anon_sym_default] = ACTIONS(468), - [anon_sym_if] = ACTIONS(468), - [anon_sym_extern] = ACTIONS(468), - [anon_sym_nopanic] = ACTIONS(468), - [anon_sym_loop] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_pub] = ACTIONS(468), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(468), - [anon_sym_while] = ACTIONS(468), - [sym_numeric_literal] = ACTIONS(466), - [aux_sym_string_literal_token1] = ACTIONS(466), - [sym_shortstring_literal] = ACTIONS(466), - [anon_sym_true] = ACTIONS(468), - [anon_sym_false] = ACTIONS(468), - [anon_sym_DOLLAR] = ACTIONS(466), - [sym_identifier] = ACTIONS(468), - [sym_mutable_specifier] = ACTIONS(468), - [sym_super] = ACTIONS(468), + [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), }, - [63] = { + [60] = { [anon_sym_LBRACE] = ACTIONS(470), [anon_sym_RBRACE] = ACTIONS(470), [anon_sym_impl] = ACTIONS(472), @@ -16004,7 +16008,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(470), [anon_sym_LT_EQ] = ACTIONS(470), [anon_sym_AT] = ACTIONS(470), - [anon_sym_DOT] = 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), @@ -16019,7 +16024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(472), [anon_sym_static] = ACTIONS(472), [anon_sym_while] = ACTIONS(472), - [sym_numeric_literal] = ACTIONS(470), + [sym_numeric_literal] = ACTIONS(472), [aux_sym_string_literal_token1] = ACTIONS(470), [sym_shortstring_literal] = ACTIONS(470), [anon_sym_true] = ACTIONS(472), @@ -16030,7 +16035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(472), [sym_line_comment] = ACTIONS(3), }, - [64] = { + [61] = { [anon_sym_LBRACE] = ACTIONS(474), [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_impl] = ACTIONS(476), @@ -16098,7 +16103,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(474), [anon_sym_LT_EQ] = ACTIONS(474), [anon_sym_AT] = ACTIONS(474), - [anon_sym_DOT] = 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), @@ -16113,7 +16119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(476), [anon_sym_static] = ACTIONS(476), [anon_sym_while] = ACTIONS(476), - [sym_numeric_literal] = ACTIONS(474), + [sym_numeric_literal] = ACTIONS(476), [aux_sym_string_literal_token1] = ACTIONS(474), [sym_shortstring_literal] = ACTIONS(474), [anon_sym_true] = ACTIONS(476), @@ -16124,7 +16130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(476), [sym_line_comment] = ACTIONS(3), }, - [65] = { + [62] = { [anon_sym_LBRACE] = ACTIONS(478), [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_impl] = ACTIONS(480), @@ -16192,7 +16198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(478), [anon_sym_LT_EQ] = ACTIONS(478), [anon_sym_AT] = ACTIONS(478), - [anon_sym_DOT] = 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), @@ -16207,7 +16214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(480), [anon_sym_static] = ACTIONS(480), [anon_sym_while] = ACTIONS(480), - [sym_numeric_literal] = ACTIONS(482), + [sym_numeric_literal] = ACTIONS(480), [aux_sym_string_literal_token1] = ACTIONS(478), [sym_shortstring_literal] = ACTIONS(478), [anon_sym_true] = ACTIONS(480), @@ -16218,620 +16225,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(480), [sym_line_comment] = ACTIONS(3), }, - [66] = { - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_impl] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_trait] = ACTIONS(487), - [anon_sym_type] = ACTIONS(487), - [anon_sym_const] = ACTIONS(487), - [anon_sym_COLON] = ACTIONS(487), - [anon_sym_EQ] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_POUND] = ACTIONS(485), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(485), - [anon_sym_mod] = ACTIONS(487), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [anon_sym_COMMA] = ACTIONS(485), - [anon_sym_fn] = ACTIONS(487), - [anon_sym_DASH_GT] = ACTIONS(485), - [anon_sym_let] = ACTIONS(487), - [anon_sym_use] = ACTIONS(487), - [anon_sym_COLON_COLON] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym__] = ACTIONS(487), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_u8] = ACTIONS(487), - [anon_sym_i8] = ACTIONS(487), - [anon_sym_u16] = ACTIONS(487), - [anon_sym_i16] = ACTIONS(487), - [anon_sym_u32] = ACTIONS(487), - [anon_sym_i32] = ACTIONS(487), - [anon_sym_u64] = ACTIONS(487), - [anon_sym_i64] = ACTIONS(487), - [anon_sym_u128] = ACTIONS(487), - [anon_sym_i128] = ACTIONS(487), - [anon_sym_usize] = ACTIONS(487), - [anon_sym_bool] = ACTIONS(487), - [anon_sym_ByteArray] = ACTIONS(487), - [anon_sym_felt252] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_PERCENT] = ACTIONS(487), - [anon_sym_CARET] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_AMP] = ACTIONS(487), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(485), - [anon_sym_PIPE_PIPE] = ACTIONS(485), - [anon_sym_LT_LT] = ACTIONS(485), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_PLUS_EQ] = ACTIONS(485), - [anon_sym_DASH_EQ] = ACTIONS(485), - [anon_sym_STAR_EQ] = ACTIONS(485), - [anon_sym_SLASH_EQ] = ACTIONS(485), - [anon_sym_PERCENT_EQ] = ACTIONS(485), - [anon_sym_CARET_EQ] = ACTIONS(485), - [anon_sym_AMP_EQ] = ACTIONS(485), - [anon_sym_PIPE_EQ] = ACTIONS(485), - [anon_sym_EQ_EQ] = ACTIONS(485), - [anon_sym_BANG_EQ] = ACTIONS(485), - [anon_sym_GT_EQ] = ACTIONS(485), - [anon_sym_LT_EQ] = ACTIONS(485), - [anon_sym_AT] = ACTIONS(485), - [anon_sym_DOT] = ACTIONS(485), - [anon_sym_EQ_GT] = ACTIONS(485), - [anon_sym_QMARK] = ACTIONS(485), - [anon_sym_break] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_default] = ACTIONS(487), - [anon_sym_if] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(487), - [anon_sym_nopanic] = ACTIONS(487), - [anon_sym_loop] = ACTIONS(487), - [anon_sym_match] = ACTIONS(487), - [anon_sym_pub] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [sym_numeric_literal] = ACTIONS(485), - [aux_sym_string_literal_token1] = ACTIONS(485), - [sym_shortstring_literal] = ACTIONS(485), - [anon_sym_true] = ACTIONS(487), - [anon_sym_false] = ACTIONS(487), - [anon_sym_DOLLAR] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [sym_mutable_specifier] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_line_comment] = ACTIONS(3), - }, - [67] = { - [anon_sym_LBRACE] = ACTIONS(489), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_impl] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_trait] = ACTIONS(491), - [anon_sym_type] = ACTIONS(491), - [anon_sym_const] = ACTIONS(491), - [anon_sym_COLON] = ACTIONS(491), - [anon_sym_EQ] = ACTIONS(491), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_POUND] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_RBRACK] = ACTIONS(489), - [anon_sym_mod] = ACTIONS(491), - [anon_sym_struct] = ACTIONS(491), - [anon_sym_enum] = ACTIONS(491), - [anon_sym_COMMA] = ACTIONS(489), - [anon_sym_fn] = ACTIONS(491), - [anon_sym_DASH_GT] = ACTIONS(489), - [anon_sym_let] = ACTIONS(491), - [anon_sym_use] = ACTIONS(491), - [anon_sym_COLON_COLON] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym__] = ACTIONS(491), - [anon_sym_RPAREN] = ACTIONS(489), - [anon_sym_u8] = ACTIONS(491), - [anon_sym_i8] = ACTIONS(491), - [anon_sym_u16] = ACTIONS(491), - [anon_sym_i16] = ACTIONS(491), - [anon_sym_u32] = ACTIONS(491), - [anon_sym_i32] = ACTIONS(491), - [anon_sym_u64] = ACTIONS(491), - [anon_sym_i64] = ACTIONS(491), - [anon_sym_u128] = ACTIONS(491), - [anon_sym_i128] = ACTIONS(491), - [anon_sym_usize] = ACTIONS(491), - [anon_sym_bool] = ACTIONS(491), - [anon_sym_ByteArray] = ACTIONS(491), - [anon_sym_felt252] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(491), - [anon_sym_DASH] = ACTIONS(491), - [anon_sym_SLASH] = ACTIONS(491), - [anon_sym_PERCENT] = ACTIONS(491), - [anon_sym_CARET] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(489), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_PIPE] = ACTIONS(491), - [anon_sym_AMP_AMP] = ACTIONS(489), - [anon_sym_PIPE_PIPE] = ACTIONS(489), - [anon_sym_LT_LT] = ACTIONS(489), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_PLUS_EQ] = ACTIONS(489), - [anon_sym_DASH_EQ] = ACTIONS(489), - [anon_sym_STAR_EQ] = ACTIONS(489), - [anon_sym_SLASH_EQ] = ACTIONS(489), - [anon_sym_PERCENT_EQ] = ACTIONS(489), - [anon_sym_CARET_EQ] = ACTIONS(489), - [anon_sym_AMP_EQ] = ACTIONS(489), - [anon_sym_PIPE_EQ] = ACTIONS(489), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_BANG_EQ] = ACTIONS(489), - [anon_sym_GT_EQ] = ACTIONS(489), - [anon_sym_LT_EQ] = ACTIONS(489), - [anon_sym_AT] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_EQ_GT] = ACTIONS(489), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_break] = ACTIONS(491), - [anon_sym_continue] = ACTIONS(491), - [anon_sym_default] = ACTIONS(491), - [anon_sym_if] = ACTIONS(491), - [anon_sym_extern] = ACTIONS(491), - [anon_sym_nopanic] = ACTIONS(491), - [anon_sym_loop] = ACTIONS(491), - [anon_sym_match] = ACTIONS(491), - [anon_sym_pub] = ACTIONS(491), - [anon_sym_return] = ACTIONS(491), - [anon_sym_static] = ACTIONS(491), - [anon_sym_while] = ACTIONS(491), - [sym_numeric_literal] = ACTIONS(489), - [aux_sym_string_literal_token1] = ACTIONS(489), - [sym_shortstring_literal] = ACTIONS(489), - [anon_sym_true] = ACTIONS(491), - [anon_sym_false] = ACTIONS(491), - [anon_sym_DOLLAR] = ACTIONS(489), - [sym_identifier] = ACTIONS(491), - [sym_mutable_specifier] = ACTIONS(491), - [sym_super] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_impl] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(493), - [anon_sym_trait] = ACTIONS(495), - [anon_sym_type] = ACTIONS(495), - [anon_sym_const] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(493), - [anon_sym_RBRACK] = ACTIONS(493), - [anon_sym_mod] = ACTIONS(495), - [anon_sym_struct] = ACTIONS(495), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(493), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_let] = ACTIONS(495), - [anon_sym_use] = ACTIONS(495), - [anon_sym_COLON_COLON] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(493), - [anon_sym_RPAREN] = ACTIONS(493), - [anon_sym_u8] = ACTIONS(495), - [anon_sym_i8] = ACTIONS(495), - [anon_sym_u16] = ACTIONS(495), - [anon_sym_i16] = ACTIONS(495), - [anon_sym_u32] = ACTIONS(495), - [anon_sym_i32] = ACTIONS(495), - [anon_sym_u64] = ACTIONS(495), - [anon_sym_i64] = ACTIONS(495), - [anon_sym_u128] = ACTIONS(495), - [anon_sym_i128] = ACTIONS(495), - [anon_sym_usize] = ACTIONS(495), - [anon_sym_bool] = ACTIONS(495), - [anon_sym_ByteArray] = ACTIONS(495), - [anon_sym_felt252] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(493), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_STAR_EQ] = ACTIONS(493), - [anon_sym_SLASH_EQ] = ACTIONS(493), - [anon_sym_PERCENT_EQ] = ACTIONS(493), - [anon_sym_EQ_EQ] = ACTIONS(493), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_AT] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(493), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [anon_sym_default] = ACTIONS(495), - [anon_sym_if] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(495), - [anon_sym_loop] = ACTIONS(495), - [anon_sym_match] = ACTIONS(495), - [anon_sym_pub] = ACTIONS(495), - [anon_sym_return] = ACTIONS(495), - [anon_sym_while] = ACTIONS(495), - [sym_numeric_literal] = ACTIONS(493), - [aux_sym_string_literal_token1] = ACTIONS(493), - [sym_shortstring_literal] = ACTIONS(493), - [anon_sym_true] = ACTIONS(495), - [anon_sym_false] = ACTIONS(495), - [anon_sym_ref] = ACTIONS(495), - [sym_identifier] = ACTIONS(495), - [sym_super] = ACTIONS(495), + [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), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_impl] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(497), - [anon_sym_trait] = ACTIONS(499), - [anon_sym_type] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_POUND] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_RBRACK] = ACTIONS(497), - [anon_sym_mod] = ACTIONS(499), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(497), - [anon_sym_fn] = ACTIONS(499), - [anon_sym_let] = ACTIONS(499), - [anon_sym_use] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_LPAREN] = ACTIONS(497), - [anon_sym_RPAREN] = ACTIONS(497), - [anon_sym_u8] = ACTIONS(499), - [anon_sym_i8] = ACTIONS(499), - [anon_sym_u16] = ACTIONS(499), - [anon_sym_i16] = ACTIONS(499), - [anon_sym_u32] = ACTIONS(499), - [anon_sym_i32] = ACTIONS(499), - [anon_sym_u64] = ACTIONS(499), - [anon_sym_i64] = ACTIONS(499), - [anon_sym_u128] = ACTIONS(499), - [anon_sym_i128] = ACTIONS(499), - [anon_sym_usize] = ACTIONS(499), - [anon_sym_bool] = ACTIONS(499), - [anon_sym_ByteArray] = ACTIONS(499), - [anon_sym_felt252] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(499), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(497), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(497), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(497), - [anon_sym_break] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(499), - [anon_sym_if] = ACTIONS(499), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_match] = ACTIONS(499), - [anon_sym_pub] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [sym_numeric_literal] = ACTIONS(497), - [aux_sym_string_literal_token1] = ACTIONS(497), - [sym_shortstring_literal] = ACTIONS(497), - [anon_sym_true] = ACTIONS(499), - [anon_sym_false] = ACTIONS(499), - [anon_sym_ref] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [sym_super] = ACTIONS(499), + [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), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_impl] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_trait] = ACTIONS(503), - [anon_sym_type] = ACTIONS(503), - [anon_sym_const] = ACTIONS(503), - [anon_sym_EQ] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_POUND] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(501), - [anon_sym_RBRACK] = ACTIONS(501), - [anon_sym_mod] = ACTIONS(503), - [anon_sym_struct] = ACTIONS(503), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(501), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_let] = ACTIONS(503), - [anon_sym_use] = ACTIONS(503), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(503), - [anon_sym_i8] = ACTIONS(503), - [anon_sym_u16] = ACTIONS(503), - [anon_sym_i16] = ACTIONS(503), - [anon_sym_u32] = ACTIONS(503), - [anon_sym_i32] = ACTIONS(503), - [anon_sym_u64] = ACTIONS(503), - [anon_sym_i64] = ACTIONS(503), - [anon_sym_u128] = ACTIONS(503), - [anon_sym_i128] = ACTIONS(503), - [anon_sym_usize] = ACTIONS(503), - [anon_sym_bool] = ACTIONS(503), - [anon_sym_ByteArray] = ACTIONS(503), - [anon_sym_felt252] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_GT] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(503), - [anon_sym_PERCENT] = ACTIONS(503), - [anon_sym_CARET] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(503), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT] = ACTIONS(501), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_GT_EQ] = ACTIONS(501), - [anon_sym_LT_EQ] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_QMARK] = ACTIONS(501), - [anon_sym_break] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(503), - [anon_sym_default] = ACTIONS(503), - [anon_sym_if] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(503), - [anon_sym_loop] = ACTIONS(503), - [anon_sym_match] = ACTIONS(503), - [anon_sym_pub] = ACTIONS(503), - [anon_sym_return] = ACTIONS(503), - [anon_sym_while] = ACTIONS(503), - [sym_numeric_literal] = ACTIONS(501), - [aux_sym_string_literal_token1] = ACTIONS(501), - [sym_shortstring_literal] = ACTIONS(501), - [anon_sym_true] = ACTIONS(503), - [anon_sym_false] = ACTIONS(503), - [anon_sym_ref] = ACTIONS(503), - [sym_identifier] = ACTIONS(503), - [sym_super] = ACTIONS(503), + [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), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(474), - [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_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_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_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(474), - [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_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] = 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_loop] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_pub] = ACTIONS(476), - [anon_sym_return] = ACTIONS(476), - [anon_sym_while] = ACTIONS(476), - [sym_numeric_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_shortstring_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [anon_sym_ref] = ACTIONS(476), - [sym_identifier] = ACTIONS(476), - [sym_super] = ACTIONS(476), + [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), }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_impl] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_trait] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_const] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_mod] = ACTIONS(468), - [anon_sym_struct] = ACTIONS(468), - [anon_sym_enum] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_fn] = ACTIONS(468), - [anon_sym_let] = ACTIONS(468), - [anon_sym_use] = ACTIONS(468), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_u8] = ACTIONS(468), - [anon_sym_i8] = ACTIONS(468), - [anon_sym_u16] = ACTIONS(468), - [anon_sym_i16] = ACTIONS(468), - [anon_sym_u32] = ACTIONS(468), - [anon_sym_i32] = ACTIONS(468), - [anon_sym_u64] = ACTIONS(468), - [anon_sym_i64] = ACTIONS(468), - [anon_sym_u128] = ACTIONS(468), - [anon_sym_i128] = ACTIONS(468), - [anon_sym_usize] = ACTIONS(468), - [anon_sym_bool] = ACTIONS(468), - [anon_sym_ByteArray] = ACTIONS(468), - [anon_sym_felt252] = ACTIONS(468), - [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(466), - [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_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] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_break] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), - [anon_sym_default] = ACTIONS(468), - [anon_sym_if] = ACTIONS(468), - [anon_sym_extern] = ACTIONS(468), - [anon_sym_loop] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_pub] = ACTIONS(468), - [anon_sym_return] = ACTIONS(468), - [anon_sym_while] = ACTIONS(468), - [sym_numeric_literal] = ACTIONS(466), - [aux_sym_string_literal_token1] = ACTIONS(466), - [sym_shortstring_literal] = ACTIONS(466), - [anon_sym_true] = ACTIONS(468), - [anon_sym_false] = ACTIONS(468), - [anon_sym_ref] = ACTIONS(468), - [sym_identifier] = ACTIONS(468), - [sym_super] = ACTIONS(468), + [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), }, - [73] = { + [68] = { [ts_builtin_sym_end] = ACTIONS(505), [anon_sym_LBRACE] = ACTIONS(505), [anon_sym_RBRACE] = ACTIONS(505), @@ -16906,7 +16775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(507), [anon_sym_return] = ACTIONS(507), [anon_sym_while] = ACTIONS(507), - [sym_numeric_literal] = ACTIONS(505), + [sym_numeric_literal] = ACTIONS(507), [aux_sym_string_literal_token1] = ACTIONS(505), [sym_shortstring_literal] = ACTIONS(505), [anon_sym_true] = ACTIONS(507), @@ -16916,7 +16785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(507), [sym_line_comment] = ACTIONS(3), }, - [74] = { + [69] = { [ts_builtin_sym_end] = ACTIONS(509), [anon_sym_LBRACE] = ACTIONS(509), [anon_sym_RBRACE] = ACTIONS(509), @@ -16991,7 +16860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(511), [anon_sym_return] = ACTIONS(511), [anon_sym_while] = ACTIONS(511), - [sym_numeric_literal] = ACTIONS(509), + [sym_numeric_literal] = ACTIONS(511), [aux_sym_string_literal_token1] = ACTIONS(509), [sym_shortstring_literal] = ACTIONS(509), [anon_sym_true] = ACTIONS(511), @@ -17001,7 +16870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(511), [sym_line_comment] = ACTIONS(3), }, - [75] = { + [70] = { [ts_builtin_sym_end] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(513), [anon_sym_RBRACE] = ACTIONS(513), @@ -17076,7 +16945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(515), [anon_sym_return] = ACTIONS(515), [anon_sym_while] = ACTIONS(515), - [sym_numeric_literal] = ACTIONS(513), + [sym_numeric_literal] = ACTIONS(515), [aux_sym_string_literal_token1] = ACTIONS(513), [sym_shortstring_literal] = ACTIONS(513), [anon_sym_true] = ACTIONS(515), @@ -17086,7 +16955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(515), [sym_line_comment] = ACTIONS(3), }, - [76] = { + [71] = { [ts_builtin_sym_end] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(517), [anon_sym_RBRACE] = ACTIONS(517), @@ -17161,7 +17030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(519), [anon_sym_return] = ACTIONS(519), [anon_sym_while] = ACTIONS(519), - [sym_numeric_literal] = ACTIONS(517), + [sym_numeric_literal] = ACTIONS(519), [aux_sym_string_literal_token1] = ACTIONS(517), [sym_shortstring_literal] = ACTIONS(517), [anon_sym_true] = ACTIONS(519), @@ -17171,7 +17040,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(519), [sym_line_comment] = ACTIONS(3), }, - [77] = { + [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), @@ -17246,7 +17200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(523), [anon_sym_return] = ACTIONS(523), [anon_sym_while] = ACTIONS(523), - [sym_numeric_literal] = ACTIONS(521), + [sym_numeric_literal] = ACTIONS(523), [aux_sym_string_literal_token1] = ACTIONS(521), [sym_shortstring_literal] = ACTIONS(521), [anon_sym_true] = ACTIONS(523), @@ -17256,7 +17210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(523), [sym_line_comment] = ACTIONS(3), }, - [78] = { + [74] = { [ts_builtin_sym_end] = ACTIONS(525), [anon_sym_LBRACE] = ACTIONS(525), [anon_sym_RBRACE] = ACTIONS(525), @@ -17331,7 +17285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(527), [anon_sym_return] = ACTIONS(527), [anon_sym_while] = ACTIONS(527), - [sym_numeric_literal] = ACTIONS(525), + [sym_numeric_literal] = ACTIONS(527), [aux_sym_string_literal_token1] = ACTIONS(525), [sym_shortstring_literal] = ACTIONS(525), [anon_sym_true] = ACTIONS(527), @@ -17341,7 +17295,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(527), [sym_line_comment] = ACTIONS(3), }, - [79] = { + [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), @@ -17416,7 +17455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(531), [anon_sym_return] = ACTIONS(531), [anon_sym_while] = ACTIONS(531), - [sym_numeric_literal] = ACTIONS(529), + [sym_numeric_literal] = ACTIONS(531), [aux_sym_string_literal_token1] = ACTIONS(529), [sym_shortstring_literal] = ACTIONS(529), [anon_sym_true] = ACTIONS(531), @@ -17426,7 +17465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), }, - [80] = { + [77] = { [ts_builtin_sym_end] = ACTIONS(533), [anon_sym_LBRACE] = ACTIONS(533), [anon_sym_RBRACE] = ACTIONS(533), @@ -17501,7 +17540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(535), [anon_sym_return] = ACTIONS(535), [anon_sym_while] = ACTIONS(535), - [sym_numeric_literal] = ACTIONS(533), + [sym_numeric_literal] = ACTIONS(535), [aux_sym_string_literal_token1] = ACTIONS(533), [sym_shortstring_literal] = ACTIONS(533), [anon_sym_true] = ACTIONS(535), @@ -17511,7 +17550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(535), [sym_line_comment] = ACTIONS(3), }, - [81] = { + [78] = { [ts_builtin_sym_end] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(537), [anon_sym_RBRACE] = ACTIONS(537), @@ -17586,7 +17625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(539), [anon_sym_return] = ACTIONS(539), [anon_sym_while] = ACTIONS(539), - [sym_numeric_literal] = ACTIONS(537), + [sym_numeric_literal] = ACTIONS(539), [aux_sym_string_literal_token1] = ACTIONS(537), [sym_shortstring_literal] = ACTIONS(537), [anon_sym_true] = ACTIONS(539), @@ -17596,7 +17635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(539), [sym_line_comment] = ACTIONS(3), }, - [82] = { + [79] = { [ts_builtin_sym_end] = ACTIONS(541), [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_RBRACE] = ACTIONS(541), @@ -17671,7 +17710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(543), [anon_sym_return] = ACTIONS(543), [anon_sym_while] = ACTIONS(543), - [sym_numeric_literal] = ACTIONS(541), + [sym_numeric_literal] = ACTIONS(543), [aux_sym_string_literal_token1] = ACTIONS(541), [sym_shortstring_literal] = ACTIONS(541), [anon_sym_true] = ACTIONS(543), @@ -17681,8 +17720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(543), [sym_line_comment] = ACTIONS(3), }, - [83] = { - [sym_else_clause] = STATE(79), + [80] = { [ts_builtin_sym_end] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(545), [anon_sym_RBRACE] = ACTIONS(545), @@ -17695,15 +17733,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17754,313 +17795,566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(547), [anon_sym_return] = ACTIONS(547), [anon_sym_while] = ACTIONS(547), - [sym_numeric_literal] = ACTIONS(545), + [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_else] = ACTIONS(549), [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(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_mod] = ACTIONS(523), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_enum] = ACTIONS(523), - [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_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(521), - [aux_sym_string_literal_token1] = ACTIONS(521), - [sym_shortstring_literal] = ACTIONS(521), - [anon_sym_true] = ACTIONS(523), - [anon_sym_false] = ACTIONS(523), - [anon_sym_else] = ACTIONS(523), - [anon_sym_ref] = ACTIONS(523), - [sym_identifier] = ACTIONS(523), - [sym_super] = ACTIONS(523), + [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(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_mod] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [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_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(505), - [aux_sym_string_literal_token1] = ACTIONS(505), - [sym_shortstring_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_else] = ACTIONS(507), - [anon_sym_ref] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [sym_super] = ACTIONS(507), + [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(497), - [anon_sym_LBRACE] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_impl] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(497), - [anon_sym_trait] = ACTIONS(499), - [anon_sym_type] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_POUND] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_mod] = ACTIONS(499), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [anon_sym_fn] = ACTIONS(499), - [anon_sym_let] = ACTIONS(499), - [anon_sym_use] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_LPAREN] = ACTIONS(497), - [anon_sym_u8] = ACTIONS(499), - [anon_sym_i8] = ACTIONS(499), - [anon_sym_u16] = ACTIONS(499), - [anon_sym_i16] = ACTIONS(499), - [anon_sym_u32] = ACTIONS(499), - [anon_sym_i32] = ACTIONS(499), - [anon_sym_u64] = ACTIONS(499), - [anon_sym_i64] = ACTIONS(499), - [anon_sym_u128] = ACTIONS(499), - [anon_sym_i128] = ACTIONS(499), - [anon_sym_usize] = ACTIONS(499), - [anon_sym_bool] = ACTIONS(499), - [anon_sym_ByteArray] = ACTIONS(499), - [anon_sym_felt252] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(499), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(497), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(497), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(497), - [anon_sym_break] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(499), - [anon_sym_if] = ACTIONS(499), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_match] = ACTIONS(499), - [anon_sym_pub] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [sym_numeric_literal] = ACTIONS(497), - [aux_sym_string_literal_token1] = ACTIONS(497), - [sym_shortstring_literal] = ACTIONS(497), - [anon_sym_true] = ACTIONS(499), - [anon_sym_false] = ACTIONS(499), - [anon_sym_else] = ACTIONS(499), - [anon_sym_ref] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [sym_super] = ACTIONS(499), + [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(471), - [sym_attribute_item] = STATE(105), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(577), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1285), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(105), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(555), + [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(557), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18081,150 +18375,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_ByteArray] = ACTIONS(565), - [anon_sym_felt252] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_break] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_extern] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_numeric_literal] = ACTIONS(561), - [aux_sym_string_literal_token1] = ACTIONS(561), - [sym_shortstring_literal] = ACTIONS(561), - [anon_sym_true] = ACTIONS(565), - [anon_sym_false] = ACTIONS(565), - [anon_sym_ref] = ACTIONS(565), - [sym_identifier] = ACTIONS(565), - [sym_super] = ACTIONS(565), + [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] = { - [sym_macro_invocation] = STATE(471), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(580), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1310), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(569), + [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(571), + [anon_sym_RPAREN] = ACTIONS(587), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18245,149 +18621,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [90] = { - [ts_builtin_sym_end] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_impl] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(573), - [anon_sym_trait] = ACTIONS(575), - [anon_sym_type] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_mod] = ACTIONS(575), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_fn] = ACTIONS(575), - [anon_sym_let] = ACTIONS(575), - [anon_sym_use] = ACTIONS(575), - [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_u8] = ACTIONS(575), - [anon_sym_i8] = ACTIONS(575), - [anon_sym_u16] = ACTIONS(575), - [anon_sym_i16] = ACTIONS(575), - [anon_sym_u32] = ACTIONS(575), - [anon_sym_i32] = ACTIONS(575), - [anon_sym_u64] = ACTIONS(575), - [anon_sym_i64] = ACTIONS(575), - [anon_sym_u128] = ACTIONS(575), - [anon_sym_i128] = ACTIONS(575), - [anon_sym_usize] = ACTIONS(575), - [anon_sym_bool] = ACTIONS(575), - [anon_sym_ByteArray] = ACTIONS(575), - [anon_sym_felt252] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_default] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_extern] = ACTIONS(575), - [anon_sym_loop] = ACTIONS(575), - [anon_sym_match] = ACTIONS(575), - [anon_sym_pub] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [sym_numeric_literal] = ACTIONS(573), - [aux_sym_string_literal_token1] = ACTIONS(573), - [sym_shortstring_literal] = ACTIONS(573), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_ref] = ACTIONS(575), - [sym_identifier] = ACTIONS(575), - [sym_super] = ACTIONS(575), + [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(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [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(577), + [anon_sym_RPAREN] = ACTIONS(589), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18408,67 +18702,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [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(579), + [anon_sym_RPAREN] = ACTIONS(591), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18489,67 +18783,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [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(581), + [anon_sym_RPAREN] = ACTIONS(593), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18570,67 +18864,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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] = { - [sym_macro_invocation] = STATE(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [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(583), + [anon_sym_RPAREN] = ACTIONS(595), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18651,148 +19026,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [95] = { - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_ByteArray] = ACTIONS(565), - [anon_sym_felt252] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_break] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_extern] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_numeric_literal] = ACTIONS(561), - [aux_sym_string_literal_token1] = ACTIONS(561), - [sym_shortstring_literal] = ACTIONS(561), - [anon_sym_true] = ACTIONS(565), - [anon_sym_false] = ACTIONS(565), - [anon_sym_ref] = ACTIONS(565), - [sym_identifier] = ACTIONS(565), - [sym_super] = ACTIONS(565), + [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(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [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(585), + [anon_sym_RPAREN] = ACTIONS(597), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18813,67 +19107,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [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(587), + [anon_sym_RPAREN] = ACTIONS(599), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18894,63 +19188,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), + [sym_macro_invocation] = STATE(467), [sym_attribute_item] = STATE(103), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(495), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(591), + [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), @@ -18974,62 +19268,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(658), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1437), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19054,222 +19428,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [100] = { - [sym_macro_invocation] = STATE(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(578), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(605), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_COLON_COLON] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_u8] = ACTIONS(613), - [anon_sym_i8] = ACTIONS(613), - [anon_sym_u16] = ACTIONS(613), - [anon_sym_i16] = ACTIONS(613), - [anon_sym_u32] = ACTIONS(613), - [anon_sym_i32] = ACTIONS(613), - [anon_sym_u64] = ACTIONS(613), - [anon_sym_i64] = ACTIONS(613), - [anon_sym_u128] = ACTIONS(613), - [anon_sym_i128] = ACTIONS(613), - [anon_sym_usize] = ACTIONS(613), - [anon_sym_bool] = ACTIONS(613), - [anon_sym_ByteArray] = ACTIONS(613), - [anon_sym_felt252] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(625), - [anon_sym_if] = ACTIONS(628), - [anon_sym_loop] = ACTIONS(631), - [anon_sym_match] = ACTIONS(634), - [anon_sym_return] = ACTIONS(637), - [anon_sym_while] = ACTIONS(640), - [sym_numeric_literal] = ACTIONS(643), - [aux_sym_string_literal_token1] = ACTIONS(646), - [sym_shortstring_literal] = ACTIONS(643), - [anon_sym_true] = ACTIONS(649), - [anon_sym_false] = ACTIONS(649), - [anon_sym_ref] = ACTIONS(652), - [sym_identifier] = ACTIONS(655), - [sym_super] = ACTIONS(658), + [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(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(574), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(605), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_COLON_COLON] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_u8] = ACTIONS(613), - [anon_sym_i8] = ACTIONS(613), - [anon_sym_u16] = ACTIONS(613), - [anon_sym_i16] = ACTIONS(613), - [anon_sym_u32] = ACTIONS(613), - [anon_sym_i32] = ACTIONS(613), - [anon_sym_u64] = ACTIONS(613), - [anon_sym_i64] = ACTIONS(613), - [anon_sym_u128] = ACTIONS(613), - [anon_sym_i128] = ACTIONS(613), - [anon_sym_usize] = ACTIONS(613), - [anon_sym_bool] = ACTIONS(613), - [anon_sym_ByteArray] = ACTIONS(613), - [anon_sym_felt252] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(625), - [anon_sym_if] = ACTIONS(628), - [anon_sym_loop] = ACTIONS(631), - [anon_sym_match] = ACTIONS(634), - [anon_sym_return] = ACTIONS(637), - [anon_sym_while] = ACTIONS(640), - [sym_numeric_literal] = ACTIONS(643), - [aux_sym_string_literal_token1] = ACTIONS(646), - [sym_shortstring_literal] = ACTIONS(643), - [anon_sym_true] = ACTIONS(649), - [anon_sym_false] = ACTIONS(649), - [anon_sym_ref] = ACTIONS(652), - [sym_identifier] = ACTIONS(655), - [sym_super] = ACTIONS(658), + [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(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(587), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1232), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19294,63 +19588,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), + [sym_macro_invocation] = STATE(467), [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(543), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(661), - [anon_sym_COMMA] = ACTIONS(663), + [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), @@ -19374,63 +19668,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), + [sym_macro_invocation] = STATE(467), [sym_attribute_item] = STATE(106), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), + [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(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(665), - [anon_sym_COMMA] = ACTIONS(667), + [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), @@ -19454,62 +19748,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(572), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1326), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19534,63 +19828,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(547), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_COMMA] = ACTIONS(671), + [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), @@ -19614,62 +19908,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_named_argument] = STATE(1423), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [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(551), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19694,62 +19988,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(673), + [anon_sym_RBRACK] = ACTIONS(688), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19773,62 +20067,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(690), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19852,62 +20146,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(677), + [anon_sym_RBRACK] = ACTIONS(692), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19931,62 +20225,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_RBRACK] = ACTIONS(694), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20010,62 +20304,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(696), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20089,65 +20383,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(683), [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), @@ -20168,65 +20462,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(119), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(623), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(119), + [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(553), + [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_RPAREN] = ACTIONS(685), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20247,65 +20541,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(118), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(681), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(118), + [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(553), + [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(687), + [anon_sym_RPAREN] = ACTIONS(702), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20326,62 +20620,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20405,62 +20699,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20484,138 +20778,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(747), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), + [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(19), - [anon_sym_POUND] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [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(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_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(49), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(732), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -20640,216 +21012,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [120] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1451), - [sym_let_condition] = STATE(1451), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [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(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [121] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1414), - [sym_let_condition] = STATE(1414), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [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(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -20874,216 +21246,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [123] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(760), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym__condition] = STATE(1514), - [sym_let_condition] = STATE(1514), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_let] = ACTIONS(697), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1415), - [sym_let_condition] = STATE(1415), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - }, - [125] = { - [sym_macro_invocation] = STATE(471), - [sym_attribute_item] = STATE(382), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(611), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_enum_variant_list_repeat1] = STATE(382), + [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(553), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -21108,375 +21324,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [126] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1420), - [sym_let_condition] = STATE(1420), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [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(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1433), - [sym_let_condition] = STATE(1433), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1417), - [sym_let_condition] = STATE(1417), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [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(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym__condition] = STATE(1432), - [sym_let_condition] = STATE(1432), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(693), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [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(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(686), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_tuple_expression_repeat1] = STATE(132), + [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(701), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21497,63 +21791,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(636), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_tuple_expression_repeat1] = STATE(135), + [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(703), + [anon_sym_RPAREN] = ACTIONS(718), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21574,55 +21868,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(672), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -21630,7 +21924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21651,63 +21945,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(657), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [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(707), + [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21728,63 +22022,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(602), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_tuple_expression_repeat1] = STATE(137), + [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(709), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21805,55 +22099,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(602), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -21861,7 +22155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21882,63 +22176,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(672), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [aux_sym_tuple_expression_repeat1] = STATE(133), + [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(705), + [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21959,55 +22253,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(674), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22015,7 +22309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22036,284 +22330,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(733), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(713), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(725), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_ByteArray] = ACTIONS(730), - [anon_sym_felt252] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_TILDE] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(716), - [anon_sym_break] = ACTIONS(736), - [anon_sym_continue] = ACTIONS(739), - [anon_sym_default] = ACTIONS(742), - [anon_sym_if] = ACTIONS(745), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_match] = ACTIONS(751), - [anon_sym_return] = ACTIONS(754), - [anon_sym_while] = ACTIONS(757), - [sym_numeric_literal] = ACTIONS(760), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_shortstring_literal] = ACTIONS(760), - [anon_sym_true] = ACTIONS(766), - [anon_sym_false] = ACTIONS(766), - [anon_sym_ref] = ACTIONS(769), - [sym_identifier] = ACTIONS(772), - [sym_super] = ACTIONS(775), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(419), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_mutable_specifier] = ACTIONS(778), - [sym_super] = ACTIONS(436), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_mutable_specifier] = ACTIONS(780), - [sym_super] = ACTIONS(410), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(419), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22340,206 +22634,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_mutable_specifier] = ACTIONS(782), - [sym_super] = ACTIONS(75), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(746), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(724), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [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_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(49), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(727), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22566,130 +22860,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(710), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(470), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22716,55 +23010,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(473), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22791,55 +23085,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(437), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22866,55 +23160,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(479), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -22941,55 +23235,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(483), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23016,55 +23310,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(461), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23091,55 +23385,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(460), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23166,205 +23460,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(711), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(713), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(458), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23391,55 +23685,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(735), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23466,55 +23835,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [157] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(468), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23541,130 +23985,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(426), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [159] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(427), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23691,130 +24210,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(694), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [161] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23841,55 +24360,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -23916,130 +24660,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [163] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(726), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -24066,131 +24735,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(754), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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), }, - [166] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(736), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -24216,130 +25110,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_while] = ACTIONS(810), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [167] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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), }, - [168] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(463), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -24366,130 +25335,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [169] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(757), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(734), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -24516,56 +25410,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [171] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(707), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(254), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(254), - [sym_if_expression] = STATE(254), - [sym_match_expression] = STATE(254), - [sym_while_expression] = STATE(254), - [sym_loop_expression] = STATE(254), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(784), + [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), @@ -24591,431 +25485,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(786), - [anon_sym_loop] = ACTIONS(788), - [anon_sym_match] = ACTIONS(790), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(792), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [172] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(427), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [173] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(709), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - }, - [174] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(697), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [175] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(758), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [176] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(705), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [177] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(706), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(249), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(249), - [sym_if_expression] = STATE(249), - [sym_match_expression] = STATE(249), - [sym_while_expression] = STATE(249), - [sym_loop_expression] = STATE(249), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(784), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25041,55 +25560,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(786), - [anon_sym_loop] = ACTIONS(788), - [anon_sym_match] = ACTIONS(790), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(792), + [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(737), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25116,55 +25635,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(702), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25191,55 +26010,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(722), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25266,55 +26160,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(426), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25341,205 +26235,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(708), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - }, - [183] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(743), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(794), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), + [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), }, - [184] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(728), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25566,205 +26385,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [185] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(731), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - }, - [186] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(740), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25791,55 +26535,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [188] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(619), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25866,55 +26760,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(620), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -25941,205 +26835,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [anon_sym_return] = ACTIONS(442), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(814), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(698), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), + [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(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [192] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(433), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -26166,55 +27060,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(627), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -26241,206 +27210,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [194] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(701), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [195] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(625), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - }, - [196] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(673), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(249), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(249), - [sym_if_expression] = STATE(249), - [sym_match_expression] = STATE(249), - [sym_while_expression] = STATE(249), - [sym_loop_expression] = STATE(249), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(784), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -26466,131 +27285,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(786), - [anon_sym_loop] = ACTIONS(788), - [anon_sym_match] = ACTIONS(790), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(792), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [197] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(748), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [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(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(738), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), + [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), @@ -26616,130 +27360,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_while] = ACTIONS(810), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [199] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(696), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - }, - [200] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(426), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -26766,205 +27435,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(796), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [201] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(693), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [202] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(426), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(796), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [203] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(742), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -26991,55 +27585,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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), + [sym_numeric_literal] = ACTIONS(814), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(759), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -27066,55 +27660,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(764), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -27141,130 +27735,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(743), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [207] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(633), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -27291,55 +27810,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(762), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -27366,131 +27885,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(661), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [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_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(49), - [anon_sym_if] = ACTIONS(224), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, - [210] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(725), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), + [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), @@ -27516,55 +28035,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_while] = ACTIONS(810), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(739), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -27591,131 +28410,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(716), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [213] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(604), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(254), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(254), - [sym_if_expression] = STATE(254), - [sym_match_expression] = STATE(254), - [sym_while_expression] = STATE(254), - [sym_loop_expression] = STATE(254), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(784), + [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), @@ -27741,430 +28485,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(786), - [anon_sym_loop] = ACTIONS(788), - [anon_sym_match] = ACTIONS(790), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(792), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), - [sym_line_comment] = ACTIONS(3), - }, - [214] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1158), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(622), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(433), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_ByteArray] = ACTIONS(422), - [anon_sym_felt252] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_break] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(428), - [anon_sym_if] = ACTIONS(224), + [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(430), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [sym_super] = ACTIONS(436), + [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), }, - [215] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(745), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [216] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(750), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [217] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(751), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [218] = { - [sym_macro_invocation] = STATE(803), - [sym_generic_type_with_turbofish] = STATE(1206), - [sym__literal] = STATE(807), - [sym_negative_literal] = STATE(805), - [sym_string_literal] = STATE(805), - [sym_boolean_literal] = STATE(805), - [sym_scoped_identifier] = STATE(613), - [sym_scoped_type_identifier_in_expression_position] = STATE(1447), - [sym_expression] = STATE(752), - [sym_generic_function] = STATE(807), - [sym_tuple_expression] = STATE(807), - [sym_return_expression] = STATE(807), - [sym_struct_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_break_expression] = STATE(807), - [sym_continue_expression] = STATE(807), - [sym_index_expression] = STATE(807), - [sym_array_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_unit_expression] = STATE(807), - [sym_compound_assignment_expr] = STATE(807), - [sym__expression_ending_with_block] = STATE(807), - [sym_unary_expression] = STATE(807), - [sym_try_expression] = STATE(807), - [sym_field_expression] = STATE(741), - [sym_block] = STATE(807), - [sym_if_expression] = STATE(807), - [sym_match_expression] = STATE(807), - [sym_while_expression] = STATE(807), - [sym_loop_expression] = STATE(807), - [sym_binary_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_reference_expression] = STATE(807), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(380), - [anon_sym_i8] = ACTIONS(380), - [anon_sym_u16] = ACTIONS(380), - [anon_sym_i16] = ACTIONS(380), - [anon_sym_u32] = ACTIONS(380), - [anon_sym_i32] = ACTIONS(380), - [anon_sym_u64] = ACTIONS(380), - [anon_sym_i64] = ACTIONS(380), - [anon_sym_u128] = ACTIONS(380), - [anon_sym_i128] = ACTIONS(380), - [anon_sym_usize] = ACTIONS(380), - [anon_sym_bool] = ACTIONS(380), - [anon_sym_ByteArray] = ACTIONS(380), - [anon_sym_felt252] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_break] = ACTIONS(384), - [anon_sym_continue] = ACTIONS(386), - [anon_sym_default] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_loop] = ACTIONS(392), - [anon_sym_match] = ACTIONS(394), - [anon_sym_return] = ACTIONS(396), - [anon_sym_while] = ACTIONS(398), - [sym_numeric_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(402), - [sym_shortstring_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(404), - [anon_sym_false] = ACTIONS(404), - [anon_sym_ref] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [sym_super] = ACTIONS(410), - [sym_line_comment] = ACTIONS(3), - }, - [219] = { - [sym_macro_invocation] = STATE(471), - [sym_generic_type_with_turbofish] = STATE(1246), - [sym__literal] = STATE(459), - [sym_negative_literal] = STATE(480), - [sym_string_literal] = STATE(480), - [sym_boolean_literal] = STATE(480), - [sym_scoped_identifier] = STATE(436), - [sym_scoped_type_identifier_in_expression_position] = STATE(1369), - [sym_expression] = STATE(659), - [sym_generic_function] = STATE(459), - [sym_tuple_expression] = STATE(459), - [sym_return_expression] = STATE(459), - [sym_struct_expression] = STATE(459), - [sym_assignment_expression] = STATE(459), - [sym_break_expression] = STATE(459), - [sym_continue_expression] = STATE(459), - [sym_index_expression] = STATE(459), - [sym_array_expression] = STATE(459), - [sym_parenthesized_expression] = STATE(459), - [sym_unit_expression] = STATE(459), - [sym_compound_assignment_expr] = STATE(459), - [sym__expression_ending_with_block] = STATE(459), - [sym_unary_expression] = STATE(459), - [sym_try_expression] = STATE(459), + [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(459), - [sym_if_expression] = STATE(459), - [sym_match_expression] = STATE(459), - [sym_while_expression] = STATE(459), - [sym_loop_expression] = STATE(459), - [sym_binary_expression] = STATE(459), - [sym_call_expression] = STATE(459), - [sym_reference_expression] = STATE(459), + [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), @@ -28191,19 +28560,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(224), + [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(65), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_ref] = ACTIONS(71), - [sym_identifier] = ACTIONS(73), - [sym_super] = ACTIONS(75), + [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), }, }; @@ -28212,7 +28581,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(466), 23, + ACTIONS(478), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28236,7 +28605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(468), 39, + ACTIONS(480), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28279,7 +28648,7 @@ static const uint16_t ts_small_parse_table[] = { [70] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(537), 23, + ACTIONS(553), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28303,7 +28672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(539), 39, + ACTIONS(555), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28346,7 +28715,7 @@ static const uint16_t ts_small_parse_table[] = { [140] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(517), 23, + ACTIONS(529), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28370,7 +28739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(519), 39, + ACTIONS(531), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28413,7 +28782,7 @@ static const uint16_t ts_small_parse_table[] = { [210] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 23, + ACTIONS(525), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28437,7 +28806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(507), 39, + ACTIONS(527), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28480,7 +28849,7 @@ static const uint16_t ts_small_parse_table[] = { [280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(497), 23, + ACTIONS(549), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28504,7 +28873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(499), 39, + ACTIONS(551), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28547,7 +28916,7 @@ static const uint16_t ts_small_parse_table[] = { [350] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 23, + ACTIONS(541), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28571,7 +28940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(523), 39, + ACTIONS(543), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28614,7 +28983,7 @@ static const uint16_t ts_small_parse_table[] = { [420] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(474), 23, + ACTIONS(486), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28638,7 +29007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(476), 39, + ACTIONS(488), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28678,14 +29047,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [490] = 5, + [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(798), 1, + ACTIONS(856), 1, anon_sym_else, - STATE(253), 1, + STATE(254), 1, sym_else_clause, - ACTIONS(545), 25, + ACTIONS(557), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28708,10 +29171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(547), 31, + ACTIONS(559), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -28738,156 +29200,64 @@ static const uint16_t ts_small_parse_table[] = { 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, - [560] = 33, + [688] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(800), 1, - anon_sym_POUND, - ACTIONS(802), 1, - anon_sym_LBRACK, - ACTIONS(804), 1, - anon_sym_COMMA, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(808), 1, - anon_sym_LPAREN, - ACTIONS(810), 1, - anon_sym__, - ACTIONS(812), 1, - anon_sym_RPAREN, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(818), 1, - anon_sym_PIPE, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(822), 1, - anon_sym_default, - ACTIONS(826), 1, - aux_sym_string_literal_token1, - ACTIONS(830), 1, - anon_sym_ref, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(834), 1, - sym_mutable_specifier, - ACTIONS(836), 1, - sym_super, - STATE(338), 1, - sym_attribute_item, - STATE(392), 1, - sym_ref_specifier, - STATE(869), 1, - sym_generic_type, - STATE(933), 1, - sym_negative_literal, - STATE(954), 1, - sym_scoped_type_identifier, - STATE(1007), 1, - sym_scoped_identifier, - STATE(1138), 1, - sym_generic_type_with_turbofish, - STATE(1140), 1, - sym_macro_invocation, - STATE(1430), 1, - sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, - anon_sym_true, - anon_sym_false, - STATE(934), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1162), 2, - sym_parameter, - sym__type, - STATE(885), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(936), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(814), 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, - [686] = 27, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(838), 1, + ACTIONS(858), 1, anon_sym_RBRACE, - ACTIONS(840), 1, + ACTIONS(860), 1, anon_sym_impl, - ACTIONS(843), 1, + ACTIONS(863), 1, anon_sym_SEMI, - ACTIONS(846), 1, + ACTIONS(866), 1, anon_sym_trait, - ACTIONS(849), 1, + ACTIONS(869), 1, anon_sym_type, - ACTIONS(852), 1, + ACTIONS(872), 1, anon_sym_const, - ACTIONS(855), 1, + ACTIONS(875), 1, anon_sym_POUND, - ACTIONS(858), 1, + ACTIONS(878), 1, anon_sym_mod, - ACTIONS(861), 1, + ACTIONS(881), 1, anon_sym_struct, - ACTIONS(864), 1, + ACTIONS(884), 1, anon_sym_enum, - ACTIONS(867), 1, + ACTIONS(887), 1, anon_sym_fn, - ACTIONS(870), 1, + ACTIONS(890), 1, anon_sym_let, - ACTIONS(873), 1, + ACTIONS(893), 1, anon_sym_use, - ACTIONS(876), 1, + ACTIONS(896), 1, anon_sym_COLON_COLON, - ACTIONS(882), 1, + ACTIONS(902), 1, anon_sym_default, - ACTIONS(885), 1, + ACTIONS(905), 1, anon_sym_extern, - ACTIONS(888), 1, + ACTIONS(908), 1, anon_sym_pub, - ACTIONS(891), 1, + ACTIONS(911), 1, sym_identifier, - STATE(563), 1, + STATE(566), 1, sym_extern_type, - STATE(850), 1, + STATE(858), 1, sym_visibility_modifier, - STATE(1154), 1, + STATE(1160), 1, sym_extern, - STATE(1205), 1, + STATE(1207), 1, sym_function, - STATE(1460), 1, + STATE(1462), 1, sym_scoped_identifier, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(879), 15, + ACTIONS(899), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -28903,7 +29273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(229), 18, + STATE(230), 18, sym_impl_item, sym_trait_item, sym_associated_type, @@ -28922,75 +29292,76 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [799] = 32, + [801] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(800), 1, + ACTIONS(816), 1, anon_sym_POUND, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(808), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(838), 1, anon_sym_default, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(830), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, anon_sym_ref, - ACTIONS(832), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(834), 1, + ACTIONS(852), 1, sym_mutable_specifier, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(894), 1, + ACTIONS(914), 1, anon_sym__, - ACTIONS(896), 1, + ACTIONS(916), 1, anon_sym_RPAREN, - STATE(337), 1, + STATE(338), 1, sym_attribute_item, - STATE(392), 1, + STATE(387), 1, sym_ref_specifier, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1013), 1, sym_scoped_identifier, - STATE(1138), 1, + STATE(1044), 1, sym_generic_type_with_turbofish, - STATE(1140), 1, + STATE(1138), 1, sym_macro_invocation, - STATE(1430), 1, + STATE(1432), 1, sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1353), 2, + STATE(1355), 2, sym_parameter, sym__type, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -28998,7 +29369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(814), 14, + ACTIONS(830), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29013,7 +29384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [922] = 27, + [926] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29022,49 +29393,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(898), 1, + ACTIONS(918), 1, anon_sym_RBRACE, - ACTIONS(900), 1, + ACTIONS(920), 1, anon_sym_impl, - ACTIONS(902), 1, + ACTIONS(922), 1, anon_sym_SEMI, - ACTIONS(904), 1, + ACTIONS(924), 1, anon_sym_trait, - ACTIONS(906), 1, + ACTIONS(926), 1, anon_sym_type, - ACTIONS(908), 1, + ACTIONS(928), 1, anon_sym_const, - ACTIONS(910), 1, + ACTIONS(930), 1, anon_sym_POUND, - ACTIONS(912), 1, + ACTIONS(932), 1, anon_sym_mod, - ACTIONS(914), 1, + ACTIONS(934), 1, anon_sym_struct, - ACTIONS(916), 1, + ACTIONS(936), 1, anon_sym_enum, - ACTIONS(918), 1, + ACTIONS(938), 1, anon_sym_let, - ACTIONS(920), 1, + ACTIONS(940), 1, anon_sym_use, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(926), 1, + ACTIONS(946), 1, anon_sym_default, - ACTIONS(928), 1, + ACTIONS(948), 1, sym_identifier, - STATE(563), 1, + STATE(566), 1, sym_extern_type, - STATE(850), 1, + STATE(858), 1, sym_visibility_modifier, - STATE(1154), 1, + STATE(1160), 1, sym_extern, - STATE(1205), 1, + STATE(1207), 1, sym_function, - STATE(1460), 1, + STATE(1462), 1, sym_scoped_identifier, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(924), 15, + ACTIONS(944), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29080,7 +29451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(229), 18, + STATE(230), 18, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29099,10 +29470,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1035] = 3, + [1039] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 18, + ACTIONS(525), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29118,10 +29489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 39, + ACTIONS(527), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29156,12 +29526,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [1100] = 27, + [1104] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29170,49 +29541,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(900), 1, + ACTIONS(920), 1, anon_sym_impl, - ACTIONS(902), 1, + ACTIONS(922), 1, anon_sym_SEMI, - ACTIONS(904), 1, + ACTIONS(924), 1, anon_sym_trait, - ACTIONS(906), 1, + ACTIONS(926), 1, anon_sym_type, - ACTIONS(908), 1, + ACTIONS(928), 1, anon_sym_const, - ACTIONS(910), 1, + ACTIONS(930), 1, anon_sym_POUND, - ACTIONS(912), 1, + ACTIONS(932), 1, anon_sym_mod, - ACTIONS(914), 1, + ACTIONS(934), 1, anon_sym_struct, - ACTIONS(916), 1, + ACTIONS(936), 1, anon_sym_enum, - ACTIONS(918), 1, + ACTIONS(938), 1, anon_sym_let, - ACTIONS(920), 1, + ACTIONS(940), 1, anon_sym_use, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(926), 1, + ACTIONS(946), 1, anon_sym_default, - ACTIONS(928), 1, + ACTIONS(948), 1, sym_identifier, - ACTIONS(930), 1, + ACTIONS(950), 1, anon_sym_RBRACE, - STATE(563), 1, + STATE(566), 1, sym_extern_type, - STATE(850), 1, + STATE(858), 1, sym_visibility_modifier, - STATE(1154), 1, + STATE(1160), 1, sym_extern, - STATE(1205), 1, + STATE(1207), 1, sym_function, - STATE(1460), 1, + STATE(1462), 1, sym_scoped_identifier, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(924), 15, + ACTIONS(944), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29228,7 +29599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(231), 18, + STATE(232), 18, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29247,10 +29618,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1213] = 3, + [1217] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 18, + ACTIONS(541), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29266,10 +29637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(523), 39, + ACTIONS(543), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29304,142 +29674,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [1278] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(521), 25, - 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, sym_numeric_literal, - 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, anon_sym_true, anon_sym_false, - anon_sym_else, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [1343] = 32, + [1282] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(800), 1, + ACTIONS(816), 1, anon_sym_POUND, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(808), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(838), 1, anon_sym_default, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(830), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, anon_sym_ref, - ACTIONS(832), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(834), 1, + ACTIONS(852), 1, sym_mutable_specifier, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(894), 1, + ACTIONS(914), 1, anon_sym__, - ACTIONS(932), 1, + ACTIONS(952), 1, anon_sym_RPAREN, - STATE(337), 1, + STATE(338), 1, sym_attribute_item, - STATE(392), 1, + STATE(387), 1, sym_ref_specifier, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1013), 1, sym_scoped_identifier, - STATE(1138), 1, + STATE(1044), 1, sym_generic_type_with_turbofish, - STATE(1140), 1, + STATE(1138), 1, sym_macro_invocation, - STATE(1430), 1, + STATE(1432), 1, sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1353), 2, + STATE(1355), 2, sym_parameter, sym__type, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -29447,7 +29757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(814), 14, + ACTIONS(830), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29462,10 +29772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [1466] = 3, + [1407] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(497), 25, + ACTIONS(541), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29488,10 +29798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(499), 32, + ACTIONS(543), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29518,16 +29827,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [1531] = 3, + [1472] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 25, + ACTIONS(549), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29550,10 +29860,71 @@ static const uint16_t ts_small_parse_table[] = { 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(507), 32, + ACTIONS(527), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29580,13 +29951,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [1596] = 27, + [1602] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29595,49 +29967,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(900), 1, + ACTIONS(920), 1, anon_sym_impl, - ACTIONS(902), 1, + ACTIONS(922), 1, anon_sym_SEMI, - ACTIONS(904), 1, + ACTIONS(924), 1, anon_sym_trait, - ACTIONS(906), 1, + ACTIONS(926), 1, anon_sym_type, - ACTIONS(908), 1, + ACTIONS(928), 1, anon_sym_const, - ACTIONS(910), 1, + ACTIONS(930), 1, anon_sym_POUND, - ACTIONS(912), 1, + ACTIONS(932), 1, anon_sym_mod, - ACTIONS(914), 1, + ACTIONS(934), 1, anon_sym_struct, - ACTIONS(916), 1, + ACTIONS(936), 1, anon_sym_enum, - ACTIONS(918), 1, + ACTIONS(938), 1, anon_sym_let, - ACTIONS(920), 1, + ACTIONS(940), 1, anon_sym_use, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(926), 1, + ACTIONS(946), 1, anon_sym_default, - ACTIONS(928), 1, + ACTIONS(948), 1, sym_identifier, - ACTIONS(934), 1, + ACTIONS(954), 1, anon_sym_RBRACE, - STATE(563), 1, + STATE(566), 1, sym_extern_type, - STATE(850), 1, + STATE(858), 1, sym_visibility_modifier, - STATE(1154), 1, + STATE(1160), 1, sym_extern, - STATE(1205), 1, + STATE(1207), 1, sym_function, - STATE(1460), 1, + STATE(1462), 1, sym_scoped_identifier, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(924), 15, + ACTIONS(944), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29653,7 +30025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(241), 18, + STATE(243), 18, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29672,75 +30044,76 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1709] = 32, + [1715] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(800), 1, + ACTIONS(816), 1, anon_sym_POUND, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(808), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(838), 1, anon_sym_default, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(830), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, anon_sym_ref, - ACTIONS(832), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(834), 1, + ACTIONS(852), 1, sym_mutable_specifier, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(894), 1, + ACTIONS(914), 1, anon_sym__, - ACTIONS(936), 1, + ACTIONS(956), 1, anon_sym_RPAREN, - STATE(337), 1, + STATE(338), 1, sym_attribute_item, - STATE(392), 1, + STATE(387), 1, sym_ref_specifier, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1013), 1, sym_scoped_identifier, - STATE(1138), 1, + STATE(1044), 1, sym_generic_type_with_turbofish, - STATE(1140), 1, + STATE(1138), 1, sym_macro_invocation, - STATE(1430), 1, + STATE(1432), 1, sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1353), 2, + STATE(1355), 2, sym_parameter, sym__type, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -29748,7 +30121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(814), 14, + ACTIONS(830), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29763,7 +30136,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [1832] = 27, + [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, @@ -29772,49 +30207,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(900), 1, + ACTIONS(920), 1, anon_sym_impl, - ACTIONS(902), 1, + ACTIONS(922), 1, anon_sym_SEMI, - ACTIONS(904), 1, + ACTIONS(924), 1, anon_sym_trait, - ACTIONS(906), 1, + ACTIONS(926), 1, anon_sym_type, - ACTIONS(908), 1, + ACTIONS(928), 1, anon_sym_const, - ACTIONS(910), 1, + ACTIONS(930), 1, anon_sym_POUND, - ACTIONS(912), 1, + ACTIONS(932), 1, anon_sym_mod, - ACTIONS(914), 1, + ACTIONS(934), 1, anon_sym_struct, - ACTIONS(916), 1, + ACTIONS(936), 1, anon_sym_enum, - ACTIONS(918), 1, + ACTIONS(938), 1, anon_sym_let, - ACTIONS(920), 1, + ACTIONS(940), 1, anon_sym_use, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(926), 1, + ACTIONS(946), 1, anon_sym_default, - ACTIONS(928), 1, + ACTIONS(948), 1, sym_identifier, - ACTIONS(938), 1, + ACTIONS(958), 1, anon_sym_RBRACE, - STATE(563), 1, + STATE(566), 1, sym_extern_type, - STATE(850), 1, + STATE(858), 1, sym_visibility_modifier, - STATE(1154), 1, + STATE(1160), 1, sym_extern, - STATE(1205), 1, + STATE(1207), 1, sym_function, - STATE(1460), 1, + STATE(1462), 1, sym_scoped_identifier, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(924), 15, + ACTIONS(944), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29830,7 +30265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(229), 18, + STATE(230), 18, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29849,72 +30284,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1945] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(497), 18, - 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, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(499), 39, - 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, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [2010] = 3, + [2018] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(513), 25, + ACTIONS(521), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29937,10 +30310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(515), 31, + ACTIONS(523), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29967,78 +30339,80 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2074] = 31, + [2082] = 32, ACTIONS(3), 1, sym_line_comment, - ACTIONS(800), 1, + ACTIONS(816), 1, anon_sym_POUND, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(808), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(838), 1, anon_sym_default, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(830), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, anon_sym_ref, - ACTIONS(832), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(834), 1, + ACTIONS(852), 1, sym_mutable_specifier, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(894), 1, + ACTIONS(914), 1, anon_sym__, - STATE(337), 1, + STATE(338), 1, sym_attribute_item, - STATE(392), 1, + STATE(387), 1, sym_ref_specifier, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1013), 1, sym_scoped_identifier, - STATE(1138), 1, + STATE(1044), 1, sym_generic_type_with_turbofish, - STATE(1140), 1, + STATE(1138), 1, sym_macro_invocation, - STATE(1430), 1, + STATE(1432), 1, sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1353), 2, + STATE(1355), 2, sym_parameter, sym__type, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -30046,7 +30420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(814), 14, + ACTIONS(830), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30061,10 +30435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [2194] = 3, + [2204] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 25, + ACTIONS(525), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30087,10 +30461,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 31, + ACTIONS(527), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30117,15 +30490,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2258] = 3, + [2268] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(497), 25, + ACTIONS(549), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30148,10 +30522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(499), 31, + ACTIONS(551), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30178,15 +30551,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2322] = 3, + [2332] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 25, + ACTIONS(541), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30209,10 +30583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(523), 31, + ACTIONS(543), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30239,15 +30612,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2386] = 3, + [2396] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 25, + ACTIONS(513), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30270,10 +30644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 31, + ACTIONS(515), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30300,34 +30673,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2450] = 5, + [2460] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(940), 7, + ACTIONS(533), 24, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(567), 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(563), 18, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -30344,7 +30705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(942), 23, + 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, @@ -30360,24 +30725,43 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2518] = 3, + [2524] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(509), 25, - anon_sym_RBRACE, + ACTIONS(960), 6, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, 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, @@ -30394,12 +30778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(511), 31, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(962), 24, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -30415,24 +30794,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2582] = 3, + [2592] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(501), 25, + ACTIONS(517), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30455,10 +30829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(503), 31, + ACTIONS(519), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30485,15 +30858,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2646] = 3, + [2656] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(493), 25, + ACTIONS(505), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30516,10 +30890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(495), 31, + ACTIONS(507), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30546,15 +30919,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2710] = 3, + [2720] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 25, + ACTIONS(509), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30577,10 +30951,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(531), 31, + ACTIONS(511), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30607,23 +30980,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2774] = 5, + [2784] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(944), 7, + ACTIONS(964), 6, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(567), 8, + ACTIONS(579), 8, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -30632,7 +31005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_AMP, - ACTIONS(563), 18, + ACTIONS(575), 18, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_CARET, @@ -30651,7 +31024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(946), 23, + ACTIONS(966), 24, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -30670,15 +31043,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2842] = 3, + [2852] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 25, + ACTIONS(545), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30701,10 +31075,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 31, + ACTIONS(547), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30731,15 +31104,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2906] = 3, + [2916] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 25, + ACTIONS(537), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30762,10 +31136,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(535), 31, + ACTIONS(539), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30792,15 +31165,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2970] = 3, + [2980] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(948), 16, + ACTIONS(968), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30814,10 +31188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(950), 39, + ACTIONS(970), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -30852,75 +31225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [3033] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(952), 16, - 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, sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(954), 39, - 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, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3096] = 3, + [3043] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(956), 16, + ACTIONS(972), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30934,10 +31248,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(958), 39, + ACTIONS(974), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -30972,15 +31285,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3159] = 3, + [3106] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 16, + ACTIONS(976), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30994,10 +31308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(962), 39, + ACTIONS(978), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31032,15 +31345,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3222] = 3, + [3169] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 16, + ACTIONS(980), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31054,10 +31368,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(966), 39, + ACTIONS(982), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31092,15 +31405,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3285] = 3, + [3232] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 16, + ACTIONS(984), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31114,10 +31428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(970), 39, + ACTIONS(986), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31152,15 +31465,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3348] = 3, + [3295] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 16, + ACTIONS(988), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31174,10 +31488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(974), 39, + ACTIONS(990), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31212,15 +31525,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3411] = 3, + [3358] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 16, + ACTIONS(992), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31234,10 +31548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(978), 39, + ACTIONS(994), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31272,15 +31585,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3474] = 3, + [3421] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 16, + ACTIONS(996), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31294,10 +31608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(982), 39, + ACTIONS(998), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31332,15 +31645,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3537] = 3, + [3484] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 16, + ACTIONS(1000), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31354,10 +31668,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(986), 39, + ACTIONS(1002), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31392,15 +31705,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3600] = 3, + [3547] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 16, + ACTIONS(1004), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31414,10 +31728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(990), 39, + ACTIONS(1006), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31452,15 +31765,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3663] = 3, + [3610] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 16, + ACTIONS(1008), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31474,10 +31788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(994), 39, + ACTIONS(1010), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31512,15 +31825,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3726] = 3, + [3673] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 16, + ACTIONS(1012), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31534,10 +31848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(998), 39, + ACTIONS(1014), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31572,15 +31885,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3789] = 3, + [3736] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 16, + ACTIONS(1016), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31594,10 +31908,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1002), 39, + ACTIONS(1018), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31632,15 +31945,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3852] = 3, + [3799] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 16, + ACTIONS(1020), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31654,10 +31968,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1006), 39, + ACTIONS(1022), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31692,15 +32005,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3915] = 3, + [3862] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 16, + ACTIONS(1024), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31714,10 +32028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1010), 39, + ACTIONS(1026), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31752,15 +32065,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [3978] = 3, + [3925] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 16, + ACTIONS(1028), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31774,10 +32088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1014), 39, + ACTIONS(1030), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31812,15 +32125,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4041] = 3, + [3988] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 16, + ACTIONS(1032), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31834,10 +32148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1018), 39, + ACTIONS(1034), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31872,15 +32185,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4104] = 3, + [4051] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 16, + ACTIONS(1036), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31894,10 +32208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1022), 39, + ACTIONS(1038), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31932,15 +32245,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4167] = 3, + [4114] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 16, + ACTIONS(1040), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31954,10 +32268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1026), 39, + ACTIONS(1042), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31992,15 +32305,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4230] = 3, + [4177] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 16, + ACTIONS(1044), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32014,10 +32328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1030), 39, + ACTIONS(1046), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32052,15 +32365,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4293] = 3, + [4240] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 16, + ACTIONS(1048), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32074,10 +32388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1034), 39, + ACTIONS(1050), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32112,15 +32425,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4356] = 3, + [4303] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 16, + ACTIONS(1052), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32134,10 +32448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1038), 39, + ACTIONS(1054), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32172,15 +32485,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4419] = 3, + [4366] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 16, + ACTIONS(1056), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32194,10 +32508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1042), 39, + ACTIONS(1058), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32232,15 +32545,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4482] = 3, + [4429] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 16, + ACTIONS(1060), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32254,10 +32568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1046), 39, + ACTIONS(1062), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32292,15 +32605,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4545] = 3, + [4492] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 16, + ACTIONS(1064), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32314,10 +32628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1050), 39, + ACTIONS(1066), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32352,15 +32665,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4608] = 3, + [4555] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 16, + ACTIONS(1068), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32374,10 +32688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1054), 39, + ACTIONS(1070), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32412,15 +32725,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4671] = 3, + [4618] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 16, + ACTIONS(1072), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32434,10 +32748,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1058), 39, + ACTIONS(1074), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32472,15 +32785,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4734] = 3, + [4681] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 16, + ACTIONS(1076), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32494,10 +32808,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1062), 39, + ACTIONS(1078), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32532,15 +32845,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4797] = 3, + [4744] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 16, + ACTIONS(1080), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32554,10 +32868,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1066), 39, + ACTIONS(1082), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32592,15 +32905,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4860] = 3, + [4807] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 16, + ACTIONS(1084), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32614,10 +32928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1070), 39, + ACTIONS(1086), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32652,15 +32965,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4923] = 3, + [4870] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 16, + ACTIONS(1088), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32674,10 +32988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1074), 39, + ACTIONS(1090), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32712,15 +33025,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [4986] = 3, + [4933] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 16, + ACTIONS(1092), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32734,10 +33048,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1078), 39, + ACTIONS(1094), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32772,15 +33085,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5049] = 3, + [4996] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 16, + ACTIONS(1096), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32794,10 +33108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1082), 39, + ACTIONS(1098), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32832,15 +33145,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5112] = 3, + [5059] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 16, + ACTIONS(1100), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32854,10 +33168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1086), 39, + ACTIONS(1102), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32892,15 +33205,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5175] = 3, + [5122] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 16, + ACTIONS(1104), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32914,10 +33228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1090), 39, + ACTIONS(1106), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32952,15 +33265,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5238] = 3, + [5185] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 16, + ACTIONS(1108), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32974,10 +33288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1094), 39, + ACTIONS(1110), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33012,15 +33325,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5301] = 3, + [5248] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 16, + ACTIONS(1112), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33034,10 +33348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1098), 39, + ACTIONS(1114), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33072,15 +33385,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5364] = 3, + [5311] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 16, + ACTIONS(1116), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33094,10 +33408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1102), 39, + ACTIONS(1118), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33132,15 +33445,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5427] = 3, + [5374] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 16, + ACTIONS(1120), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33154,10 +33468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1106), 39, + ACTIONS(1122), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33192,15 +33505,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5490] = 3, + [5437] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 16, + ACTIONS(1124), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33214,10 +33528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1110), 39, + ACTIONS(1126), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33252,15 +33565,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5553] = 3, + [5500] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 16, + ACTIONS(1128), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33274,10 +33588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1114), 39, + ACTIONS(1130), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33312,15 +33625,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5616] = 3, + [5563] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 16, + ACTIONS(1132), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33334,10 +33648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1118), 39, + ACTIONS(1134), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33372,15 +33685,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5679] = 3, + [5626] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 16, + ACTIONS(1136), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33394,10 +33708,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1122), 39, + ACTIONS(1138), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33432,15 +33745,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5742] = 3, + [5689] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 16, + ACTIONS(1140), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33454,10 +33768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1126), 39, + ACTIONS(1142), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33492,15 +33805,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5805] = 3, + [5752] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1128), 16, + ACTIONS(1144), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33514,10 +33828,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1130), 39, + ACTIONS(1146), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33552,15 +33865,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5868] = 3, + [5815] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 16, + ACTIONS(1148), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33574,10 +33888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1134), 39, + ACTIONS(1150), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33612,15 +33925,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5931] = 3, + [5878] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 16, + ACTIONS(1152), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33634,10 +33948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1138), 39, + ACTIONS(1154), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33672,15 +33985,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5994] = 3, + [5941] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 16, + ACTIONS(1156), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33694,10 +34008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1142), 39, + ACTIONS(1158), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33732,15 +34045,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6057] = 3, + [6004] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 16, + ACTIONS(1160), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33754,10 +34068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1146), 39, + ACTIONS(1162), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33792,15 +34105,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6120] = 3, + [6067] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 16, + ACTIONS(1164), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33814,10 +34128,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1150), 39, + ACTIONS(1166), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33852,15 +34165,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6183] = 3, + [6130] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 16, + ACTIONS(1168), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33874,10 +34188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1154), 39, + ACTIONS(1170), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33912,15 +34225,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6246] = 3, + [6193] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 16, + ACTIONS(1172), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33934,10 +34248,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1158), 39, + ACTIONS(1174), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33972,15 +34285,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6309] = 3, + [6256] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 16, + ACTIONS(1176), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33994,10 +34308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1162), 39, + ACTIONS(1178), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34032,15 +34345,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6372] = 3, + [6319] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 16, + ACTIONS(1180), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34054,10 +34368,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1166), 39, + ACTIONS(1182), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34092,15 +34405,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6435] = 3, + [6382] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 16, + ACTIONS(1184), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34114,10 +34428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1170), 39, + ACTIONS(1186), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34152,15 +34465,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6498] = 3, + [6445] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 16, + ACTIONS(1188), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34174,10 +34488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1174), 39, + ACTIONS(1190), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34212,15 +34525,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6561] = 3, + [6508] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 16, + ACTIONS(1192), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34234,10 +34548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1178), 39, + ACTIONS(1194), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34272,15 +34585,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6624] = 3, + [6571] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 16, + ACTIONS(1196), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34294,10 +34608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1182), 39, + ACTIONS(1198), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34332,15 +34645,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6687] = 3, + [6634] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 16, + ACTIONS(1200), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34354,10 +34668,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1186), 39, + ACTIONS(1202), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34392,15 +34705,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6750] = 3, + [6697] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 16, + ACTIONS(1204), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34414,10 +34728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1190), 39, + ACTIONS(1206), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34452,15 +34765,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6813] = 3, + [6760] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 16, + ACTIONS(1208), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34474,10 +34788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1194), 39, + ACTIONS(1210), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34512,15 +34825,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6876] = 3, + [6823] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 16, + ACTIONS(1212), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34534,10 +34848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1198), 39, + ACTIONS(1214), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34572,15 +34885,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [6939] = 3, + [6886] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 16, + ACTIONS(1216), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34594,10 +34908,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1202), 39, + ACTIONS(1218), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34632,15 +34945,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7002] = 3, + [6949] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 16, + ACTIONS(1220), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34654,10 +34968,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1206), 39, + ACTIONS(1222), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34692,15 +35005,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7065] = 3, + [7012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 16, + ACTIONS(1224), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34714,10 +35028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1210), 39, + ACTIONS(1226), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34752,15 +35065,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7128] = 3, + [7075] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 16, + ACTIONS(1228), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34774,10 +35088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1214), 39, + ACTIONS(1230), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34812,15 +35125,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7191] = 3, + [7138] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 16, + ACTIONS(1232), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34834,10 +35148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1218), 39, + ACTIONS(1234), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34872,15 +35185,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7254] = 3, + [7201] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 16, + ACTIONS(1236), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34894,10 +35208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1222), 39, + ACTIONS(1238), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34932,15 +35245,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7317] = 3, + [7264] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 16, + ACTIONS(1240), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34954,10 +35268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1226), 39, + ACTIONS(1242), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34992,15 +35305,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7380] = 3, + [7327] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 16, + ACTIONS(1244), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35014,10 +35328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1230), 39, + ACTIONS(1246), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35052,15 +35365,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7443] = 3, + [7390] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1232), 16, + ACTIONS(1248), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35074,10 +35388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1234), 39, + ACTIONS(1250), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35112,15 +35425,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7506] = 3, + [7453] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1236), 16, + ACTIONS(1252), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35134,10 +35448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1238), 39, + ACTIONS(1254), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35172,15 +35485,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7569] = 3, + [7516] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 16, + ACTIONS(1256), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35194,10 +35508,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1242), 39, + ACTIONS(1258), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35232,15 +35545,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7632] = 3, + [7579] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 16, + ACTIONS(1260), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35254,10 +35568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1246), 39, + ACTIONS(1262), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35292,15 +35605,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7695] = 3, + [7642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 16, + ACTIONS(1264), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35314,10 +35628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1250), 39, + ACTIONS(1266), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35352,15 +35665,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7758] = 3, + [7705] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 16, + ACTIONS(1268), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35374,10 +35688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1254), 39, + ACTIONS(1270), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35412,15 +35725,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7821] = 3, + [7768] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 16, + ACTIONS(1272), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35434,10 +35748,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1258), 39, + ACTIONS(1274), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35472,15 +35785,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7884] = 3, + [7831] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 16, + ACTIONS(1276), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35494,10 +35808,69 @@ static const uint16_t ts_small_parse_table[] = { 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(1262), 39, + ACTIONS(1282), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35532,73 +35905,75 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7947] = 29, + [7957] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 1, + ACTIONS(1284), 1, anon_sym_RBRACE, - ACTIONS(1266), 1, + ACTIONS(1286), 1, anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, + ACTIONS(1294), 1, anon_sym__, - ACTIONS(1278), 1, + ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1316), 1, sym_super, - STATE(981), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1184), 1, sym_negative_literal, - STATE(1219), 1, + STATE(1221), 1, sym__pattern, - STATE(1406), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - STATE(1557), 1, + STATE(1559), 1, sym_match_pattern, - STATE(1576), 1, + STATE(1579), 1, sym_last_match_arm, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(347), 2, + STATE(342), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1222), 2, + 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(1225), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -35607,7 +35982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35622,69 +35997,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8061] = 29, + [8073] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(808), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(838), 1, anon_sym_default, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(830), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, anon_sym_ref, - ACTIONS(832), 1, + ACTIONS(850), 1, sym_identifier, - ACTIONS(834), 1, + ACTIONS(852), 1, sym_mutable_specifier, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym__, - STATE(392), 1, + STATE(387), 1, sym_ref_specifier, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1013), 1, sym_scoped_identifier, - STATE(1138), 1, + STATE(1044), 1, sym_generic_type_with_turbofish, - STATE(1140), 1, + STATE(1138), 1, sym_macro_invocation, - STATE(1430), 1, + STATE(1432), 1, sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1403), 2, + STATE(1415), 2, sym_parameter, sym__type, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -35692,7 +36068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(814), 14, + ACTIONS(830), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35707,69 +36083,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8175] = 29, + [8189] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(806), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(808), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(816), 1, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(826), 1, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, aux_sym_string_literal_token1, - ACTIONS(830), 1, - anon_sym_ref, - ACTIONS(832), 1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(834), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(836), 1, + ACTIONS(1316), 1, sym_super, - ACTIONS(1298), 1, - anon_sym__, - STATE(392), 1, - sym_ref_specifier, - STATE(869), 1, - sym_generic_type, - STATE(933), 1, - sym_negative_literal, - STATE(954), 1, - sym_scoped_type_identifier, - STATE(1007), 1, + ACTIONS(1320), 1, + anon_sym_RBRACE, + STATE(988), 1, sym_scoped_identifier, - STATE(1138), 1, - sym_generic_type_with_turbofish, - STATE(1140), 1, - sym_macro_invocation, - STATE(1430), 1, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, sym__pattern, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + 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(934), 2, + STATE(347), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(1314), 2, - sym_parameter, - sym__type, - STATE(885), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(936), 7, + 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, @@ -35777,7 +36154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(814), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35792,69 +36169,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8289] = 29, + [8305] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, - anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(824), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, - anon_sym__, - ACTIONS(1278), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(838), 1, anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(848), 1, + anon_sym_ref, + ACTIONS(850), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(852), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1300), 1, - anon_sym_RBRACE, - STATE(981), 1, - sym_scoped_identifier, - STATE(1150), 1, - sym_scoped_type_identifier, - STATE(1188), 1, + ACTIONS(1322), 1, + anon_sym__, + STATE(387), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, sym_negative_literal, - STATE(1219), 1, - sym__pattern, - STATE(1406), 1, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(1013), 1, + sym_scoped_identifier, + STATE(1044), 1, sym_generic_type_with_turbofish, - STATE(1497), 1, - sym_last_match_arm, - STATE(1546), 1, - sym_generic_type, - STATE(1557), 1, - sym_match_pattern, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + STATE(1138), 1, + sym_macro_invocation, + STATE(1432), 1, + sym__pattern, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(345), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1222), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1225), 8, - sym_macro_invocation, + 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, @@ -35862,7 +36240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(830), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35877,68 +36255,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8403] = 29, + [8421] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, + ACTIONS(1286), 1, anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, + ACTIONS(1294), 1, anon_sym__, - ACTIONS(1278), 1, + ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1316), 1, sym_super, - ACTIONS(1302), 1, + ACTIONS(1324), 1, anon_sym_RBRACE, - STATE(981), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1184), 1, sym_negative_literal, - STATE(1219), 1, + STATE(1221), 1, sym__pattern, - STATE(1406), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1499), 1, + sym_last_match_arm, + STATE(1548), 1, sym_generic_type, - STATE(1557), 1, + STATE(1559), 1, sym_match_pattern, - STATE(1592), 1, - sym_last_match_arm, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(346), 2, + STATE(344), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1222), 2, + 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(1225), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -35947,7 +36326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35962,68 +36341,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8517] = 29, + [8537] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(816), 1, + 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(818), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(826), 1, - aux_sym_string_literal_token1, + ACTIONS(1302), 1, + anon_sym_default, ACTIONS(1304), 1, - anon_sym_COMMA, + sym_numeric_literal, ACTIONS(1306), 1, - anon_sym_COLON_COLON, + aux_sym_string_literal_token1, ACTIONS(1308), 1, - anon_sym_LPAREN, - ACTIONS(1310), 1, - anon_sym__, + sym_shortstring_literal, ACTIONS(1312), 1, - anon_sym_RPAREN, - ACTIONS(1316), 1, - anon_sym_default, - ACTIONS(1318), 1, sym_identifier, - ACTIONS(1320), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1322), 1, + ACTIONS(1316), 1, sym_super, - STATE(869), 1, - sym_generic_type, - STATE(933), 1, - sym_negative_literal, - STATE(954), 1, - sym_scoped_type_identifier, - STATE(978), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1050), 1, - sym_generic_type_with_turbofish, - STATE(1089), 1, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, sym__pattern, - STATE(1146), 1, - sym_macro_invocation, - STATE(1238), 1, - sym__type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + 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(934), 2, + STATE(349), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(885), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(936), 7, + 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, @@ -36031,7 +36410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1314), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36046,68 +36425,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8630] = 29, + [8650] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, - anon_sym__, - ACTIONS(1320), 1, - sym_mutable_specifier, - ACTIONS(1324), 1, - anon_sym_RBRACK, + 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(1336), 1, + ACTIONS(1340), 1, sym_identifier, - ACTIONS(1338), 1, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1344), 1, sym_super, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(987), 1, + STATE(977), 1, sym_scoped_identifier, - STATE(1041), 1, + STATE(1051), 1, + sym_generic_type_with_turbofish, + STATE(1091), 1, sym__pattern, - STATE(1081), 1, + STATE(1148), 1, sym_macro_invocation, - STATE(1092), 1, - sym_generic_type_with_turbofish, - STATE(1370), 1, + STATE(1240), 1, sym__type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36115,7 +36495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1332), 14, + ACTIONS(1336), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36130,68 +36510,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8743] = 29, + [8765] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(1286), 1, + anon_sym_POUND, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(816), 1, + 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(818), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(826), 1, - aux_sym_string_literal_token1, + ACTIONS(1302), 1, + anon_sym_default, ACTIONS(1304), 1, - anon_sym_COMMA, + sym_numeric_literal, ACTIONS(1306), 1, - anon_sym_COLON_COLON, + aux_sym_string_literal_token1, ACTIONS(1308), 1, - anon_sym_LPAREN, - ACTIONS(1310), 1, - anon_sym__, - ACTIONS(1316), 1, - anon_sym_default, - ACTIONS(1318), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1320), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1322), 1, + ACTIONS(1316), 1, sym_super, - ACTIONS(1340), 1, - anon_sym_RPAREN, - STATE(869), 1, - sym_generic_type, - STATE(933), 1, - sym_negative_literal, - STATE(954), 1, - sym_scoped_type_identifier, - STATE(978), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1050), 1, - sym_generic_type_with_turbofish, - STATE(1089), 1, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, + sym_negative_literal, + STATE(1221), 1, sym__pattern, - STATE(1146), 1, - sym_macro_invocation, - STATE(1238), 1, - sym__type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + 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(934), 2, + STATE(349), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(885), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(936), 7, + 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, @@ -36199,7 +36579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1314), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36214,68 +36594,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8856] = 29, + [8878] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(820), 1, + ACTIONS(836), 1, anon_sym_AT, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1304), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1326), 1, anon_sym_COMMA, - ACTIONS(1306), 1, + ACTIONS(1328), 1, anon_sym_COLON_COLON, - ACTIONS(1308), 1, + ACTIONS(1330), 1, anon_sym_LPAREN, - ACTIONS(1310), 1, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1316), 1, + ACTIONS(1338), 1, anon_sym_default, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym_identifier, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1322), 1, + ACTIONS(1344), 1, sym_super, - ACTIONS(1342), 1, + ACTIONS(1346), 1, anon_sym_RPAREN, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(954), 1, + STATE(957), 1, sym_scoped_type_identifier, - STATE(978), 1, + STATE(977), 1, sym_scoped_identifier, - STATE(1050), 1, + STATE(1051), 1, sym_generic_type_with_turbofish, - STATE(1089), 1, + STATE(1091), 1, sym__pattern, - STATE(1146), 1, + STATE(1148), 1, sym_macro_invocation, - STATE(1238), 1, + STATE(1240), 1, sym__type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(885), 4, + STATE(881), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(936), 7, + STATE(953), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36283,7 +36664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1314), 14, + ACTIONS(1336), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36298,67 +36679,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8969] = 28, + [8993] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, - anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, - anon_sym_COLON_COLON, - ACTIONS(1272), 1, - anon_sym_LPAREN, - ACTIONS(1274), 1, - anon_sym__, - ACTIONS(1278), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(1282), 1, - anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, - sym_identifier, - ACTIONS(1292), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, + anon_sym__, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + 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(981), 1, - sym_scoped_identifier, - STATE(1150), 1, - sym_scoped_type_identifier, - STATE(1188), 1, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, sym_negative_literal, - STATE(1219), 1, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(974), 1, + sym_scoped_identifier, + STATE(1043), 1, sym__pattern, - STATE(1406), 1, + STATE(1083), 1, + sym_macro_invocation, + STATE(1094), 1, sym_generic_type_with_turbofish, - STATE(1495), 1, - sym_last_match_arm, - STATE(1546), 1, - sym_generic_type, - STATE(1557), 1, - sym_match_pattern, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + STATE(1367), 1, + sym__type, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(348), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1222), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1225), 8, - sym_macro_invocation, + 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, @@ -36366,7 +36749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1356), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36381,66 +36764,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9080] = 28, + [9108] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, + ACTIONS(1286), 1, anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, + ACTIONS(1294), 1, anon_sym__, - ACTIONS(1278), 1, + ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1316), 1, sym_super, - STATE(981), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1184), 1, sym_negative_literal, - STATE(1219), 1, + STATE(1221), 1, sym__pattern, - STATE(1406), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - STATE(1557), 1, + STATE(1559), 1, sym_match_pattern, - STATE(1560), 1, + STATE(1562), 1, sym_last_match_arm, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(348), 2, + STATE(349), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1222), 2, + 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(1225), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36449,7 +36833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36464,67 +36848,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9191] = 28, + [9221] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, - anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(818), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + 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(1272), 1, + ACTIONS(1330), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1278), 1, - anon_sym_DASH, - ACTIONS(1280), 1, - anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1338), 1, anon_sym_default, - ACTIONS(1286), 1, - aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1340), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1344), 1, sym_super, - STATE(981), 1, - sym_scoped_identifier, - STATE(1150), 1, - sym_scoped_type_identifier, - STATE(1188), 1, + ACTIONS(1364), 1, + anon_sym_RPAREN, + STATE(871), 1, + sym_generic_type, + STATE(945), 1, sym_negative_literal, - STATE(1219), 1, - sym__pattern, - STATE(1406), 1, + STATE(957), 1, + sym_scoped_type_identifier, + STATE(977), 1, + sym_scoped_identifier, + STATE(1051), 1, sym_generic_type_with_turbofish, - STATE(1532), 1, - sym_last_match_arm, - STATE(1546), 1, - sym_generic_type, - STATE(1557), 1, - sym_match_pattern, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + 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(348), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1222), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1225), 8, - sym_macro_invocation, + 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, @@ -36532,7 +36918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1336), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36547,64 +36933,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9302] = 27, + [9336] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1344), 1, + ACTIONS(1366), 1, anon_sym_POUND, - ACTIONS(1347), 1, + ACTIONS(1369), 1, anon_sym_LBRACK, - ACTIONS(1350), 1, + ACTIONS(1372), 1, anon_sym_COLON_COLON, - ACTIONS(1353), 1, + ACTIONS(1375), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, + ACTIONS(1378), 1, anon_sym__, - ACTIONS(1362), 1, + ACTIONS(1384), 1, anon_sym_DASH, - ACTIONS(1365), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1368), 1, + ACTIONS(1390), 1, anon_sym_default, - ACTIONS(1374), 1, + ACTIONS(1393), 1, + sym_numeric_literal, + ACTIONS(1396), 1, aux_sym_string_literal_token1, - ACTIONS(1380), 1, + ACTIONS(1399), 1, + sym_shortstring_literal, + ACTIONS(1405), 1, sym_identifier, - ACTIONS(1383), 1, + ACTIONS(1408), 1, sym_mutable_specifier, - ACTIONS(1386), 1, + ACTIONS(1411), 1, sym_super, - STATE(981), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1184), 1, sym_negative_literal, - STATE(1219), 1, + STATE(1221), 1, sym__pattern, - STATE(1406), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1511), 1, + STATE(1513), 1, sym_match_pattern, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(1371), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1377), 2, + ACTIONS(1402), 2, anon_sym_true, anon_sym_false, - STATE(348), 2, + STATE(349), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1222), 2, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(349), 3, + STATE(351), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1225), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36613,7 +37000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1359), 14, + ACTIONS(1381), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36628,61 +37015,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9410] = 26, + [9446] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, + ACTIONS(1286), 1, anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, + ACTIONS(1294), 1, anon_sym__, - ACTIONS(1278), 1, + ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1316), 1, sym_super, - STATE(981), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1184), 1, sym_negative_literal, - STATE(1219), 1, + STATE(1221), 1, sym__pattern, - STATE(1406), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, - sym_generic_type, - STATE(1572), 1, + STATE(1534), 1, sym_match_pattern, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + STATE(1548), 1, + sym_generic_type, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(1222), 2, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(523), 3, + STATE(516), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1225), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36691,7 +37079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36706,61 +37094,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9514] = 26, + [9552] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1266), 1, + ACTIONS(1286), 1, anon_sym_POUND, - ACTIONS(1268), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1270), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, + ACTIONS(1294), 1, anon_sym__, - ACTIONS(1278), 1, + ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1280), 1, + ACTIONS(1300), 1, anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1286), 1, + ACTIONS(1304), 1, + sym_numeric_literal, + ACTIONS(1306), 1, aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1308), 1, + sym_shortstring_literal, + ACTIONS(1312), 1, sym_identifier, - ACTIONS(1292), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1316), 1, sym_super, - STATE(981), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1188), 1, + STATE(1184), 1, sym_negative_literal, - STATE(1219), 1, + STATE(1221), 1, sym__pattern, - STATE(1406), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1530), 1, - sym_match_pattern, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + STATE(1571), 1, + sym_match_pattern, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(1222), 2, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(523), 3, + STATE(516), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1225), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36769,7 +37158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36784,57 +37173,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9618] = 25, + [9658] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, - anon_sym_LBRACK, - ACTIONS(1391), 1, + ACTIONS(1348), 1, + anon_sym_RBRACK, + ACTIONS(1350), 1, anon_sym_COMMA, - ACTIONS(1393), 1, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_RPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1045), 1, + STATE(1043), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36843,7 +37233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36858,57 +37248,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9717] = 25, + [9759] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1407), 1, + ACTIONS(1428), 1, anon_sym_COMMA, - ACTIONS(1409), 1, + ACTIONS(1430), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1070), 1, + STATE(1132), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36917,7 +37308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36932,57 +37323,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9816] = 25, + [9860] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1411), 1, + ACTIONS(1432), 1, anon_sym_COMMA, - ACTIONS(1413), 1, + ACTIONS(1434), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1130), 1, + STATE(1126), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36991,7 +37383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37006,57 +37398,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9915] = 25, + [9961] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1415), 1, + ACTIONS(1436), 1, + anon_sym_RBRACK, + ACTIONS(1438), 1, anon_sym_COMMA, - ACTIONS(1417), 1, - anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1124), 1, + STATE(1075), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37065,7 +37458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37080,57 +37473,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10014] = 25, + [10062] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1419), 1, - anon_sym_RBRACK, - ACTIONS(1421), 1, + ACTIONS(1440), 1, anon_sym_COMMA, - STATE(870), 1, + ACTIONS(1442), 1, + anon_sym_RPAREN, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1074), 1, + STATE(1071), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37139,7 +37533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37154,57 +37548,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10113] = 25, + [10163] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1324), 1, - anon_sym_RBRACK, - ACTIONS(1326), 1, - anon_sym_COMMA, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + anon_sym_RPAREN, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1041), 1, + STATE(1048), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37213,7 +37608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37228,57 +37623,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10212] = 25, + [10264] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1423), 1, + ACTIONS(1448), 1, anon_sym_COMMA, - ACTIONS(1425), 1, + ACTIONS(1450), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1052), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37287,7 +37683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37302,57 +37698,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10311] = 25, + [10365] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1304), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1326), 1, anon_sym_COMMA, - ACTIONS(1310), 1, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1427), 1, + ACTIONS(1452), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1089), 1, + STATE(1091), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37361,7 +37758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37376,55 +37773,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10410] = 24, + [10466] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1429), 1, + ACTIONS(1454), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37433,7 +37831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37448,55 +37846,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10506] = 24, + [10564] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1431), 1, + ACTIONS(1456), 1, anon_sym_RBRACK, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37505,7 +37904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37520,55 +37919,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10602] = 24, + [10662] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1433), 1, + ACTIONS(1458), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37577,7 +37977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37592,127 +37992,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10698] = 24, + [10760] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, - aux_sym_string_literal_token1, - ACTIONS(1310), 1, - anon_sym__, - ACTIONS(1320), 1, - sym_mutable_specifier, - ACTIONS(1389), 1, - anon_sym_LBRACK, - ACTIONS(1393), 1, - anon_sym_COLON_COLON, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1401), 1, - anon_sym_default, - ACTIONS(1403), 1, - sym_identifier, - ACTIONS(1405), 1, - sym_super, - ACTIONS(1435), 1, - anon_sym_RBRACK, - STATE(870), 1, - sym_scoped_identifier, - STATE(933), 1, - sym_negative_literal, - STATE(1046), 1, - sym__pattern, - STATE(1174), 1, - sym_scoped_type_identifier, - STATE(1393), 1, - sym_generic_type_with_turbofish, - STATE(1546), 1, - sym_generic_type, - ACTIONS(824), 2, + ACTIONS(840), 1, sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, - anon_sym_true, - anon_sym_false, - STATE(934), 2, - sym_string_literal, - sym_boolean_literal, - STATE(936), 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(1399), 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, - [10794] = 24, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(818), 1, - anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1437), 1, - anon_sym_RBRACK, - STATE(870), 1, + ACTIONS(1460), 1, + anon_sym_RPAREN, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37721,7 +38050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37736,55 +38065,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10890] = 24, + [10858] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1439), 1, + ACTIONS(1462), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37793,7 +38123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37808,55 +38138,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10986] = 24, + [10956] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1441), 1, + ACTIONS(1464), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37865,7 +38196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37880,55 +38211,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11082] = 24, + [11054] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1443), 1, + ACTIONS(1466), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37937,7 +38269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37952,55 +38284,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11178] = 24, + [11152] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1445), 1, - anon_sym_RPAREN, - STATE(870), 1, + ACTIONS(1468), 1, + anon_sym_RBRACK, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38009,7 +38342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38024,55 +38357,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11274] = 24, + [11250] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1447), 1, + ACTIONS(1470), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38081,7 +38415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38096,55 +38430,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11370] = 24, + [11348] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1449), 1, + ACTIONS(1472), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38153,7 +38488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38168,55 +38503,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11466] = 24, + [11446] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1451), 1, + ACTIONS(1474), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38225,7 +38561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38240,55 +38576,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11562] = 24, + [11544] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1453), 1, - anon_sym_RPAREN, - STATE(870), 1, + ACTIONS(1476), 1, + anon_sym_RBRACK, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38297,7 +38634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38312,55 +38649,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11658] = 24, + [11642] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1455), 1, + ACTIONS(1478), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38369,7 +38707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38384,55 +38722,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11754] = 24, + [11740] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1457), 1, - anon_sym_RBRACK, - STATE(870), 1, + ACTIONS(1480), 1, + anon_sym_RPAREN, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38441,7 +38780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38456,55 +38795,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11850] = 24, + [11838] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1459), 1, + ACTIONS(1482), 1, anon_sym_RPAREN, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1047), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38513,7 +38853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38528,53 +38868,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11946] = 23, + [11936] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 1, + 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(1270), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, - anon_sym__, - ACTIONS(1278), 1, - anon_sym_DASH, - ACTIONS(1280), 1, - anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1286), 1, - aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1292), 1, - sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1426), 1, sym_super, - STATE(981), 1, + ACTIONS(1484), 1, + anon_sym_RBRACK, + STATE(866), 1, sym_scoped_identifier, - STATE(1150), 1, - sym_scoped_type_identifier, - STATE(1188), 1, + STATE(945), 1, sym_negative_literal, - STATE(1221), 1, + STATE(1047), 1, sym__pattern, - STATE(1406), 1, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(1222), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1225), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38583,7 +38926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38598,53 +38941,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12039] = 23, + [12034] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, - sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + ACTIONS(1486), 1, + sym_mutable_specifier, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1064), 1, + STATE(1101), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38653,7 +38997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38668,53 +39012,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12132] = 23, + [12129] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(818), 1, - anon_sym_PIPE, - ACTIONS(826), 1, - aux_sym_string_literal_token1, - ACTIONS(1310), 1, - anon_sym__, - ACTIONS(1389), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1403), 1, + 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(1405), 1, - sym_super, - ACTIONS(1461), 1, + ACTIONS(1314), 1, sym_mutable_specifier, - STATE(870), 1, + ACTIONS(1316), 1, + sym_super, + STATE(988), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(1157), 1, + sym_scoped_type_identifier, + STATE(1184), 1, sym_negative_literal, - STATE(1127), 1, + STATE(1245), 1, sym__pattern, - STATE(1174), 1, - sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38723,7 +39068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38738,53 +39083,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12225] = 23, + [12224] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(912), 1, - sym__pattern, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, + STATE(952), 1, + sym__pattern, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38793,7 +39139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38808,53 +39154,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12318] = 23, + [12319] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(818), 1, - anon_sym_PIPE, - ACTIONS(826), 1, - aux_sym_string_literal_token1, - ACTIONS(1310), 1, - anon_sym__, - ACTIONS(1320), 1, - sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1403), 1, + 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(1405), 1, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, sym_super, - STATE(870), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(933), 1, - sym_negative_literal, - STATE(1075), 1, - sym__pattern, - STATE(1174), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1173), 1, + sym__pattern, + STATE(1184), 1, + sym_negative_literal, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38863,7 +39210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38878,53 +39225,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12411] = 23, + [12414] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 1, + 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(1270), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, - anon_sym__, - ACTIONS(1278), 1, - anon_sym_DASH, - ACTIONS(1280), 1, - anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1286), 1, - aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1292), 1, - sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1426), 1, sym_super, - STATE(981), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(1150), 1, - sym_scoped_type_identifier, - STATE(1188), 1, + STATE(945), 1, sym_negative_literal, - STATE(1243), 1, + STATE(1047), 1, sym__pattern, - STATE(1406), 1, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(1222), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1225), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38933,7 +39281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38948,53 +39296,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12504] = 23, + [12509] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(939), 1, - sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1259), 1, + sym__pattern, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39003,7 +39352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39018,31 +39367,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12597] = 5, + [12604] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 1, - anon_sym_POUND, - STATE(382), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(605), 14, - 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, + ACTIONS(832), 1, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + 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(1463), 28, - anon_sym_COLON, + 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, @@ -39057,66 +39438,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [12654] = 23, + [12699] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(935), 1, + sym__pattern, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1228), 1, - sym__pattern, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39125,7 +39494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39140,53 +39509,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12747] = 23, + [12794] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1339), 1, + STATE(1341), 1, sym__pattern, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39195,7 +39565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39210,53 +39580,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12840] = 23, + [12889] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + 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, - ACTIONS(818), 1, + 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(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1389), 1, + ACTIONS(1342), 1, + sym_mutable_specifier, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - ACTIONS(1465), 1, - sym_mutable_specifier, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, - sym_negative_literal, - STATE(1099), 1, + STATE(929), 1, sym__pattern, - STATE(1174), 1, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39265,7 +39688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39280,53 +39703,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12933] = 23, + [13041] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1379), 1, + STATE(1349), 1, sym__pattern, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39335,7 +39759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39350,53 +39774,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13026] = 23, + [13136] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, - sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + ACTIONS(1490), 1, + sym_mutable_specifier, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1046), 1, + STATE(1133), 1, sym__pattern, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39405,7 +39830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39420,53 +39845,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13119] = 23, + [13231] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, - sym_scoped_type_identifier, - STATE(1365), 1, + STATE(1065), 1, sym__pattern, - STATE(1393), 1, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39475,7 +39901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39490,53 +39916,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13212] = 23, + [13326] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(818), 1, - anon_sym_PIPE, - ACTIONS(826), 1, - aux_sym_string_literal_token1, - ACTIONS(1310), 1, - anon_sym__, - ACTIONS(1320), 1, - sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1292), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1294), 1, + anon_sym__, + ACTIONS(1298), 1, + anon_sym_DASH, + ACTIONS(1300), 1, + anon_sym_PIPE, + ACTIONS(1302), 1, anon_sym_default, - ACTIONS(1403), 1, + 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(1405), 1, + ACTIONS(1314), 1, + sym_mutable_specifier, + ACTIONS(1316), 1, sym_super, - STATE(870), 1, + STATE(988), 1, sym_scoped_identifier, - STATE(911), 1, - sym__pattern, - STATE(933), 1, - sym_negative_literal, - STATE(1174), 1, + STATE(1157), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1184), 1, + sym_negative_literal, + STATE(1223), 1, + sym__pattern, + STATE(1408), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(1190), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(1224), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39545,7 +39972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1296), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39560,53 +39987,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13305] = 23, + [13421] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 1, + 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(1270), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1272), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1274), 1, - anon_sym__, - ACTIONS(1278), 1, - anon_sym_DASH, - ACTIONS(1280), 1, - anon_sym_PIPE, - ACTIONS(1282), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1286), 1, - aux_sym_string_literal_token1, - ACTIONS(1290), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1292), 1, - sym_mutable_specifier, - ACTIONS(1294), 1, + ACTIONS(1426), 1, sym_super, - STATE(981), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(1150), 1, + STATE(945), 1, + sym_negative_literal, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1170), 1, + STATE(1381), 1, sym__pattern, - STATE(1188), 1, - sym_negative_literal, - STATE(1406), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(1284), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(1288), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(1222), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(1225), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39615,7 +40043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1276), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39630,53 +40058,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13398] = 23, + [13516] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, - sym_scoped_type_identifier, - STATE(1257), 1, + STATE(1076), 1, sym__pattern, - STATE(1393), 1, + STATE(1145), 1, + sym_scoped_type_identifier, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39685,7 +40114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39700,53 +40129,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13491] = 23, + [13611] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(818), 1, + ACTIONS(834), 1, anon_sym_PIPE, - ACTIONS(826), 1, + ACTIONS(840), 1, + sym_numeric_literal, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(1310), 1, + ACTIONS(844), 1, + sym_shortstring_literal, + ACTIONS(1332), 1, anon_sym__, - ACTIONS(1320), 1, + ACTIONS(1342), 1, sym_mutable_specifier, - ACTIONS(1389), 1, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1393), 1, + ACTIONS(1416), 1, anon_sym_COLON_COLON, - ACTIONS(1395), 1, + ACTIONS(1418), 1, anon_sym_LPAREN, - ACTIONS(1401), 1, + ACTIONS(1422), 1, anon_sym_default, - ACTIONS(1403), 1, + ACTIONS(1424), 1, sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1426), 1, sym_super, - STATE(870), 1, + STATE(866), 1, sym_scoped_identifier, - STATE(933), 1, + STATE(945), 1, sym_negative_literal, - STATE(1174), 1, + STATE(1145), 1, sym_scoped_type_identifier, - STATE(1348), 1, + STATE(1360), 1, sym__pattern, - STATE(1393), 1, + STATE(1395), 1, sym_generic_type_with_turbofish, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type, - ACTIONS(824), 2, - sym_numeric_literal, - sym_shortstring_literal, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - STATE(934), 2, + STATE(946), 2, sym_string_literal, sym_boolean_literal, - STATE(936), 8, + STATE(953), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39755,7 +40185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1399), 14, + ACTIONS(1420), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39770,60 +40200,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13584] = 22, + [13706] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1500), 1, anon_sym_GT, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39838,60 +40269,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13674] = 22, + [13798] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1485), 1, + ACTIONS(1512), 1, anon_sym_GT, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39906,60 +40338,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13764] = 22, + [13890] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1487), 1, + ACTIONS(1514), 1, anon_sym_GT, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39974,60 +40407,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13854] = 22, + [13982] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1489), 1, + ACTIONS(1516), 1, anon_sym_GT, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40042,60 +40476,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13944] = 22, + [14074] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1491), 1, + ACTIONS(1518), 1, anon_sym_GT, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40110,60 +40545,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14034] = 22, + [14166] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - ACTIONS(1493), 1, + ACTIONS(1520), 1, anon_sym_GT, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40178,58 +40614,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14124] = 21, + [14258] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(816), 1, - anon_sym_DASH, - ACTIONS(826), 1, - aux_sym_string_literal_token1, - ACTIONS(836), 1, - sym_super, - ACTIONS(1467), 1, + ACTIONS(1216), 14, anon_sym_LBRACE, - ACTIONS(1469), 1, + anon_sym_BANG, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1471), 1, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1477), 1, + anon_sym_DASH, + anon_sym_TILDE, anon_sym_AT, - ACTIONS(1479), 1, - anon_sym_default, - ACTIONS(1483), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(972), 1, - sym_scoped_type_identifier, - STATE(1364), 1, - sym_scoped_identifier, - ACTIONS(828), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, + aux_sym_string_literal_token1, sym_shortstring_literal, - STATE(1151), 3, - sym__type, - sym__literal, - sym_block, - STATE(1363), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1218), 29, + anon_sym_COLON, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40244,58 +40648,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14211] = 21, + 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(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1212), 3, + STATE(1214), 3, sym__type, sym__literal, sym_block, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40310,58 +40729,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14298] = 21, + [14398] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(1385), 3, + STATE(1387), 3, sym__type, sym__literal, sym_block, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40376,58 +40796,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14385] = 21, + [14487] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(816), 1, + ACTIONS(832), 1, anon_sym_DASH, - ACTIONS(826), 1, + ACTIONS(842), 1, aux_sym_string_literal_token1, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1506), 1, + sym_numeric_literal, + ACTIONS(1508), 1, + sym_shortstring_literal, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - ACTIONS(828), 2, + ACTIONS(846), 2, anon_sym_true, anon_sym_false, - ACTIONS(1481), 2, - sym_numeric_literal, - sym_shortstring_literal, - STATE(1312), 3, + STATE(1153), 3, sym__type, sym__literal, sym_block, - STATE(1363), 3, + STATE(1372), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40442,27 +40863,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14472] = 3, + [14576] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 15, + 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, - anon_sym_BANG, - anon_sym_POUND, + ACTIONS(1494), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(1496), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1502), 1, anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_default, + ACTIONS(1506), 1, sym_numeric_literal, - aux_sym_string_literal_token1, + ACTIONS(1508), 1, sym_shortstring_literal, - ACTIONS(1198), 28, - anon_sym_COLON, + 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, @@ -40477,23 +40930,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [14523] = 3, + [14665] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(728), 13, + ACTIONS(743), 12, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -40504,10 +40944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, anon_sym_AT, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1495), 27, + ACTIONS(1522), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40530,15 +40969,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14571] = 3, + [14713] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 11, + ACTIONS(1526), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -40550,7 +40990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1497), 26, + ACTIONS(1524), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -40577,11 +41017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14616] = 3, + [14758] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1503), 10, + ACTIONS(1530), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -40591,15 +41032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1501), 27, + ACTIONS(1528), 26, 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_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -40618,13 +41059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [14661] = 3, + [14803] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 11, - anon_sym_EQ, + 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, @@ -40634,15 +41081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1505), 26, - anon_sym_LBRACE, + ACTIONS(575), 23, 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, @@ -40661,10 +41105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14706] = 3, + [14856] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1511), 10, + ACTIONS(1540), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -40675,7 +41119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1509), 27, + ACTIONS(1538), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -40703,10 +41147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_nopanic, - [14751] = 3, + [14901] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 11, + ACTIONS(1544), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -40718,7 +41162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1513), 26, + ACTIONS(1542), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -40745,12 +41189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14796] = 3, + [14946] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 11, + ACTIONS(1548), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -40760,61 +41203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1517), 26, + 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_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, - [14841] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1521), 1, - anon_sym_LBRACE, - ACTIONS(1523), 1, - anon_sym_BANG, - ACTIONS(1525), 1, - anon_sym_COLON_COLON, - STATE(439), 1, - sym_field_initializer_list, - ACTIONS(567), 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(563), 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, @@ -40833,10 +41230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14894] = 3, + anon_sym_nopanic, + [14991] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1529), 10, + ACTIONS(1552), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -40847,7 +41245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1527), 27, + ACTIONS(1550), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -40875,12 +41273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_nopanic, - [14939] = 4, + [15036] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1531), 1, - anon_sym_LBRACE, - ACTIONS(1519), 11, + ACTIONS(1556), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -40892,13 +41288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1517), 24, + 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, @@ -40917,12 +41315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14985] = 4, + [15081] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1533), 1, + ACTIONS(1558), 1, anon_sym_LBRACE, - ACTIONS(1515), 11, + ACTIONS(1530), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -40934,7 +41332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1513), 24, + ACTIONS(1528), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -40959,14 +41357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15031] = 5, + [15127] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1535), 1, + ACTIONS(1560), 1, anon_sym_else, - STATE(79), 1, + STATE(69), 1, sym_else_clause, - ACTIONS(547), 10, + ACTIONS(559), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -40977,7 +41375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(545), 24, + ACTIONS(557), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41002,12 +41400,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15079] = 4, + [15175] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1537), 1, + ACTIONS(1562), 1, anon_sym_LBRACE, - ACTIONS(1507), 11, + ACTIONS(1556), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41019,7 +41417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1505), 24, + ACTIONS(1554), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41044,12 +41442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15125] = 4, + [15221] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1539), 1, + ACTIONS(1564), 1, anon_sym_LBRACE, - ACTIONS(1499), 11, + ACTIONS(1526), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41061,7 +41459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1497), 24, + ACTIONS(1524), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41086,11 +41484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15171] = 3, + [15267] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(499), 10, + ACTIONS(1566), 1, + anon_sym_LBRACE, + ACTIONS(1544), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41100,13 +41501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(497), 25, - anon_sym_LBRACE, + 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, @@ -41125,21 +41526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_else, - [15214] = 8, + [15313] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - STATE(464), 1, - sym_arguments, - ACTIONS(1543), 10, + ACTIONS(1568), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41150,12 +41543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1541), 20, - anon_sym_LBRACE, + 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, @@ -41171,102 +41565,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15267] = 18, + anon_sym_DOT, + anon_sym_QMARK, + [15358] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1576), 1, anon_sym_AT, - ACTIONS(1557), 1, + ACTIONS(1578), 1, anon_sym_default, - ACTIONS(1559), 1, + ACTIONS(1580), 1, anon_sym_nopanic, - ACTIONS(1561), 1, + ACTIONS(1582), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(985), 1, + STATE(975), 1, sym__type, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1431), 1, + STATE(1342), 1, sym_nopanic, - ACTIONS(1553), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [15340] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, - anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_LPAREN, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - anon_sym_default, - ACTIONS(1559), 1, - anon_sym_nopanic, - ACTIONS(1561), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(980), 1, - sym__type, - STATE(1362), 1, + STATE(1364), 1, sym_scoped_identifier, - STATE(1384), 1, - sym_nopanic, - ACTIONS(1563), 2, + ACTIONS(1574), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41281,10 +41622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15413] = 3, + [15431] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1567), 10, + ACTIONS(543), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41295,14 +41636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1565), 25, + ACTIONS(541), 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, @@ -41321,20 +41661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15456] = 8, + anon_sym_else, + [15474] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1521), 1, - anon_sym_LBRACE, - ACTIONS(1523), 1, + ACTIONS(1588), 1, anon_sym_BANG, - ACTIONS(1525), 1, + ACTIONS(1590), 1, anon_sym_COLON_COLON, - ACTIONS(1569), 1, - anon_sym_COLON, - STATE(439), 1, - sym_field_initializer_list, - ACTIONS(567), 10, + ACTIONS(1586), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41345,8 +41680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 20, + ACTIONS(1584), 23, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -41366,10 +41704,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15509] = 3, + [15521] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(523), 10, + 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, @@ -41380,14 +41728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(521), 25, + ACTIONS(1592), 20, 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, @@ -41403,13 +41749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_else, - [15552] = 3, + [15574] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(507), 10, + ACTIONS(551), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41420,7 +41763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(505), 25, + ACTIONS(549), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41446,20 +41789,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_else, - [15595] = 8, + [15617] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1573), 10, + 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, @@ -41470,12 +41893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1571), 20, + 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, @@ -41491,20 +41917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15648] = 8, + anon_sym_DOT, + anon_sym_QMARK, + [15766] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1577), 10, + ACTIONS(1616), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41515,7 +41943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 20, + ACTIONS(1614), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41536,14 +41964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15701] = 5, + [15819] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1583), 1, - anon_sym_BANG, - ACTIONS(1585), 1, + ACTIONS(1618), 1, anon_sym_COLON_COLON, - ACTIONS(1581), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41554,7 +41980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1579), 23, + ACTIONS(575), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41578,12 +42005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15748] = 4, + [15864] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1587), 1, - anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(527), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41594,7 +42019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 24, + ACTIONS(525), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41619,10 +42044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15793] = 3, + anon_sym_else, + [15907] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1591), 10, + ACTIONS(1622), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41633,7 +42059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1589), 25, + ACTIONS(1620), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41659,13 +42085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15836] = 4, + [15950] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1593), 2, - anon_sym_LBRACE, + ACTIONS(1534), 1, + anon_sym_BANG, + ACTIONS(1624), 1, anon_sym_COLON_COLON, - ACTIONS(1597), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41676,7 +42103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1595), 23, + ACTIONS(575), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41700,47 +42127,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15881] = 18, + [15997] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1576), 1, anon_sym_AT, - ACTIONS(1557), 1, + ACTIONS(1578), 1, anon_sym_default, - ACTIONS(1559), 1, + ACTIONS(1580), 1, anon_sym_nopanic, - ACTIONS(1561), 1, + ACTIONS(1582), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(982), 1, + STATE(985), 1, sym__type, - STATE(1362), 1, + STATE(1364), 1, sym_scoped_identifier, - STATE(1396), 1, + STATE(1386), 1, sym_nopanic, - ACTIONS(1599), 2, + ACTIONS(1626), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41755,20 +42182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15954] = 8, + [16070] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1603), 10, + ACTIONS(1630), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41779,7 +42206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1601), 20, + ACTIONS(1628), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41800,47 +42227,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16007] = 18, + [16123] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1576), 1, anon_sym_AT, - ACTIONS(1557), 1, + ACTIONS(1578), 1, anon_sym_default, - ACTIONS(1559), 1, + ACTIONS(1580), 1, anon_sym_nopanic, - ACTIONS(1561), 1, + ACTIONS(1582), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(988), 1, + STATE(989), 1, sym__type, - STATE(1340), 1, + STATE(1364), 1, + sym_scoped_identifier, + STATE(1398), 1, sym_nopanic, - STATE(1362), 1, + 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, - ACTIONS(1605), 2, + STATE(1433), 1, + sym_nopanic, + ACTIONS(1636), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41855,13 +42378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16080] = 4, + [16314] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1597), 10, + ACTIONS(1640), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41872,7 +42392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1595), 23, + ACTIONS(1638), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41896,14 +42417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16125] = 5, + [16356] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1523), 1, - anon_sym_BANG, - ACTIONS(1609), 1, - anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(1644), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41914,7 +42431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 23, + ACTIONS(1642), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41938,36 +42456,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16172] = 11, + [16398] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 5, + 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(1575), 17, + ACTIONS(1614), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -41976,6 +42490,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -41985,34 +42501,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16230] = 3, + [16452] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1619), 10, + 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_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1646), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1617), 24, - anon_sym_LBRACE, + ACTIONS(1614), 16, 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, @@ -42022,12 +42551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [16272] = 3, + [16516] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1623), 10, + ACTIONS(1660), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42038,7 +42565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1621), 24, + ACTIONS(1658), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42063,10 +42590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16314] = 3, + [16558] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1627), 10, + ACTIONS(1664), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42077,7 +42604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1625), 24, + ACTIONS(1662), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42102,10 +42629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16356] = 3, + [16600] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1631), 10, + ACTIONS(1668), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42116,7 +42643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1629), 24, + ACTIONS(1666), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42141,10 +42668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16398] = 3, + [16642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1635), 10, + ACTIONS(1572), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42155,7 +42682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1633), 24, + ACTIONS(1570), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42180,106 +42707,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16440] = 3, + [16684] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1639), 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(1637), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1596), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1598), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + 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, - 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, - [16482] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1643), 10, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1646), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1641), 24, - anon_sym_LBRACE, + 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_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, - [16524] = 3, + [16756] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + 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(1645), 24, - anon_sym_LBRACE, + ACTIONS(1614), 19, 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, @@ -42295,12 +42807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [16566] = 3, + [16812] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1651), 10, + ACTIONS(1684), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42311,7 +42821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1649), 24, + ACTIONS(1682), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42336,10 +42846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16608] = 3, + [16854] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1655), 10, + ACTIONS(1688), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42350,7 +42860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1653), 24, + ACTIONS(1686), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42375,10 +42885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16650] = 3, + [16896] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1659), 10, + ACTIONS(1692), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42389,7 +42899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1657), 24, + ACTIONS(1690), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42414,88 +42924,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16692] = 3, + [16938] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1663), 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(1661), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1596), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1598), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + 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, - 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, - [16734] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1667), 10, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1646), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1665), 24, - anon_sym_LBRACE, + 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_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, - [16776] = 3, + [17010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1671), 10, + ACTIONS(1700), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42506,7 +42992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1669), 24, + ACTIONS(1698), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42531,10 +43017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16818] = 3, + [17052] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1675), 10, + ACTIONS(1704), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42545,7 +43031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1673), 24, + ACTIONS(1702), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42570,49 +43056,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16860] = 3, + [17094] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(487), 10, + 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, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(485), 24, - anon_sym_LBRACE, + 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_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, - [16902] = 3, + [17164] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1597), 10, + ACTIONS(1708), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42623,7 +43123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1595), 24, + ACTIONS(1706), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42648,10 +43148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16944] = 3, + [17206] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1679), 10, + ACTIONS(1712), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42662,7 +43162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1677), 24, + ACTIONS(1710), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42687,64 +43187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16986] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1683), 1, - anon_sym_EQ, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1681), 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, - [17058] = 3, + [17248] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1701), 10, + ACTIONS(1716), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42755,7 +43201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1699), 24, + ACTIONS(1714), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42780,50 +43226,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17100] = 18, + [17290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + 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, - ACTIONS(1547), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1549), 1, + 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, - ACTIONS(1551), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + [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, - ACTIONS(1689), 1, + 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(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1705), 1, + ACTIONS(1728), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1703), 10, + ACTIONS(1726), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -42834,10 +43397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [17172] = 3, + [17488] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(567), 10, + ACTIONS(1732), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42848,7 +43411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 24, + ACTIONS(1730), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42873,37 +43436,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17214] = 10, + [17530] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1736), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 19, + 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, @@ -42919,63 +43473,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17270] = 17, + anon_sym_DOT, + anon_sym_QMARK, + [17572] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1577), 1, + ACTIONS(1616), 1, anon_sym_EQ, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1575), 11, + 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, - [17340] = 3, + [17640] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1709), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42986,7 +43541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 24, + ACTIONS(575), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43011,64 +43566,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17382] = 18, + [17682] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1713), 1, - anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1711), 10, + 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, - [17454] = 3, + 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(1717), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43079,7 +43629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1715), 24, + ACTIONS(575), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43104,10 +43654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17496] = 3, + [17786] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1721), 10, + ACTIONS(1740), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43118,7 +43668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1719), 24, + ACTIONS(1738), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43143,10 +43693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17538] = 3, + [17828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1726), 10, + ACTIONS(1744), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43157,7 +43707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1723), 24, + ACTIONS(1742), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43182,10 +43732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17580] = 3, + [17870] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1731), 10, + ACTIONS(1748), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43196,7 +43746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1729), 24, + ACTIONS(1746), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43221,47 +43771,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17622] = 14, + [17912] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + 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, - ACTIONS(1547), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, + anon_sym_RPAREN, anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1577), 3, + 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, - ACTIONS(1611), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1575), 16, + 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, @@ -43271,10 +43847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17686] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [17996] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1735), 10, + ACTIONS(472), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43285,7 +43863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1733), 24, + ACTIONS(470), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43310,36 +43888,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17728] = 9, + [18038] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - STATE(464), 1, - sym_arguments, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1577), 7, + 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(1575), 19, + 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, @@ -43355,10 +43925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17782] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [18080] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(567), 10, + ACTIONS(1766), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43369,7 +43941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 24, + ACTIONS(1764), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43394,12 +43966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17824] = 4, + [18122] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1737), 1, + ACTIONS(1768), 1, anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43410,7 +43982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 23, + ACTIONS(575), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -43434,45 +44006,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17868] = 12, + [18166] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1689), 1, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, anon_sym_AMP, - STATE(464), 1, + 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(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1611), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 4, + 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(1575), 17, + 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, @@ -43482,10 +44097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17928] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [18280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1741), 10, + ACTIONS(1776), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43496,7 +44113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1739), 24, + ACTIONS(1774), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43521,49 +44138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17970] = 3, + [18322] = 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, - [18012] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1745), 10, + ACTIONS(1780), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43574,7 +44152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1743), 24, + ACTIONS(1778), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43599,10 +44177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18054] = 3, + [18364] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1749), 10, + ACTIONS(1784), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43613,7 +44191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1747), 24, + ACTIONS(1782), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43638,10 +44216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18096] = 3, + [18406] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1753), 10, + ACTIONS(1788), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43652,7 +44230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1751), 24, + ACTIONS(1786), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43677,44 +44255,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18138] = 13, + [18448] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 4, + ACTIONS(1616), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 16, + 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, @@ -43726,10 +44302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18200] = 3, + [18506] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(460), 10, + ACTIONS(1792), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43740,7 +44316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(458), 24, + ACTIONS(1790), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43765,10 +44341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18242] = 3, + [18548] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1757), 10, + ACTIONS(1796), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43779,7 +44355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1755), 24, + ACTIONS(1794), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43804,140 +44380,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18284] = 18, + [18590] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1761), 1, - anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1759), 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, - [18356] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1577), 1, + ACTIONS(1616), 4, anon_sym_EQ, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1575), 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, - [18424] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1765), 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(1763), 24, - anon_sym_LBRACE, + ACTIONS(1614), 17, 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, @@ -43947,56 +44428,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [18466] = 3, + [18650] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1769), 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(1767), 24, - anon_sym_LBRACE, + ACTIONS(1192), 4, 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, - [18508] = 3, + 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(1056), 4, + ACTIONS(992), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1058), 29, + ACTIONS(994), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44026,15 +44504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18549] = 3, + [18732] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 4, + ACTIONS(1152), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(974), 29, + ACTIONS(1154), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44064,15 +44542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18590] = 3, + [18773] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 4, + ACTIONS(1016), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1170), 29, + ACTIONS(1018), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44102,15 +44580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18631] = 3, + [18814] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 4, + ACTIONS(1140), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1010), 29, + ACTIONS(1142), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44140,18 +44618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18672] = 7, + [18855] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1771), 1, + ACTIONS(1798), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1800), 1, anon_sym_BANG, - ACTIONS(1775), 1, + ACTIONS(1802), 1, anon_sym_COLON_COLON, STATE(785), 1, sym_field_initializer_list, - ACTIONS(567), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44162,7 +44640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, + ACTIONS(575), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -44182,53 +44660,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [18721] = 3, + [18904] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 4, - anon_sym_RBRACE, + 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, - 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, - [18762] = 3, + 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(1236), 4, + ACTIONS(1216), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1238), 29, + ACTIONS(1218), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44258,15 +44755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18803] = 3, + [19024] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 4, + ACTIONS(988), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1086), 29, + ACTIONS(990), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44296,15 +44793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18844] = 3, + [19065] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 4, + ACTIONS(1024), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1022), 29, + ACTIONS(1026), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44334,72 +44831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18885] = 22, + [19106] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(661), 1, - anon_sym_RBRACK, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, - anon_sym_SEMI, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1781), 1, - anon_sym_COMMA, - STATE(464), 1, - sym_arguments, - STATE(1204), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [18964] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1256), 4, + ACTIONS(1160), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1258), 29, + ACTIONS(1162), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44429,15 +44869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19005] = 3, + [19147] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 4, + ACTIONS(1272), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1154), 29, + ACTIONS(1274), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44467,15 +44907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19046] = 3, + [19188] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 4, + ACTIONS(1148), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1242), 29, + ACTIONS(1150), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44505,15 +44945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19087] = 3, + [19229] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 4, + ACTIONS(1068), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1246), 29, + ACTIONS(1070), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44543,15 +44983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19128] = 3, + [19270] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 4, + ACTIONS(1256), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1182), 29, + ACTIONS(1258), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44581,15 +45021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19169] = 3, + [19311] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 4, + ACTIONS(1184), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1034), 29, + ACTIONS(1186), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44619,15 +45059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19210] = 3, + [19352] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 4, + ACTIONS(1196), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1122), 29, + ACTIONS(1198), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44657,7 +45097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19251] = 3, + [19393] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1040), 4, @@ -44695,15 +45135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19292] = 3, + [19434] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 4, + ACTIONS(1132), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1102), 29, + ACTIONS(1134), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44733,15 +45173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19333] = 3, + [19475] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 4, + ACTIONS(1116), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1162), 29, + ACTIONS(1118), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44771,15 +45211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19374] = 3, + [19516] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 4, + ACTIONS(1180), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1054), 29, + ACTIONS(1182), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44809,15 +45249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19415] = 3, + [19557] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 4, + ACTIONS(1076), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1146), 29, + ACTIONS(1078), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44847,15 +45287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19456] = 3, + [19598] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 4, + ACTIONS(1164), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1262), 29, + ACTIONS(1166), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44885,15 +45325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19497] = 3, + [19639] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 4, + ACTIONS(1072), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1222), 29, + ACTIONS(1074), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44923,15 +45363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19538] = 3, + [19680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 4, + ACTIONS(1236), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(978), 29, + ACTIONS(1238), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44961,15 +45401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19579] = 3, + [19721] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1232), 4, + ACTIONS(1048), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1234), 29, + ACTIONS(1050), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44999,15 +45439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19620] = 3, + [19762] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 4, + ACTIONS(1252), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(966), 29, + ACTIONS(1254), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45037,15 +45477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19661] = 3, + [19803] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 4, + ACTIONS(980), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1166), 29, + ACTIONS(982), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45075,15 +45515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19702] = 3, + [19844] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 4, + ACTIONS(1188), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1126), 29, + ACTIONS(1190), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45113,25 +45553,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19743] = 3, + [19885] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 4, - anon_sym_RBRACE, - anon_sym_SEMI, + 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, - 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_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, @@ -45147,19 +45587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, anon_sym_default, - anon_sym_extern, - anon_sym_pub, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, sym_identifier, + sym_mutable_specifier, sym_super, - [19784] = 3, + [19930] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 4, + ACTIONS(1084), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1066), 29, + ACTIONS(1086), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45189,15 +45631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19825] = 3, + [19971] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 4, + ACTIONS(1060), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1254), 29, + ACTIONS(1062), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45227,15 +45669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19866] = 3, + [20012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 4, + ACTIONS(1268), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1250), 29, + ACTIONS(1270), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45265,15 +45707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19907] = 3, + [20053] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 4, + ACTIONS(1248), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1078), 29, + ACTIONS(1250), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45303,15 +45745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19948] = 3, + [20094] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 4, + ACTIONS(1088), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1202), 29, + ACTIONS(1090), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45341,15 +45783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19989] = 3, + [20135] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 4, + ACTIONS(1208), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1186), 29, + ACTIONS(1210), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45379,15 +45821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20030] = 3, + [20176] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 4, + ACTIONS(1200), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1070), 29, + ACTIONS(1202), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45417,26 +45859,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20071] = 5, + [20217] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1785), 1, + ACTIONS(1080), 4, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_POUND, - STATE(523), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - ACTIONS(1788), 8, - anon_sym_LBRACK, anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1790), 21, - anon_sym__, + 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, @@ -45452,20 +45893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, anon_sym_default, - anon_sym_true, - anon_sym_false, + anon_sym_extern, + anon_sym_pub, sym_identifier, - sym_mutable_specifier, sym_super, - [20116] = 3, + [20258] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 4, + ACTIONS(1124), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1050), 29, + ACTIONS(1126), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45495,15 +45935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20157] = 3, + [20299] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 4, + ACTIONS(972), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1118), 29, + ACTIONS(974), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45533,15 +45973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20198] = 3, + [20340] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(956), 4, + ACTIONS(976), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(958), 29, + ACTIONS(978), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45571,15 +46011,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20239] = 3, + [20381] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 4, + 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(1110), 29, + ACTIONS(1130), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45609,15 +46106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20280] = 3, + [20501] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 4, + ACTIONS(1260), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1150), 29, + ACTIONS(1262), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45647,15 +46144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20321] = 3, + [20542] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 4, + ACTIONS(1096), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1114), 29, + ACTIONS(1098), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45685,15 +46182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20362] = 3, + [20583] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 4, + ACTIONS(1156), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1094), 29, + ACTIONS(1158), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45723,15 +46220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20403] = 3, + [20624] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 4, + ACTIONS(1220), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(998), 29, + ACTIONS(1222), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45761,53 +46258,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20444] = 3, + [20665] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 4, - anon_sym_RBRACE, + 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, - 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, - [20485] = 3, + 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(952), 4, + ACTIONS(1264), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(954), 29, + ACTIONS(1266), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45837,72 +46353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20526] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(669), 1, - anon_sym_RBRACK, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1792), 1, - anon_sym_SEMI, - ACTIONS(1794), 1, - anon_sym_COMMA, - STATE(464), 1, - sym_arguments, - STATE(1251), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [20605] = 3, + [20785] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 4, + ACTIONS(1120), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1190), 29, + ACTIONS(1122), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45932,15 +46391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20646] = 3, + [20826] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 4, + ACTIONS(1204), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1098), 29, + ACTIONS(1206), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45970,15 +46429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20687] = 3, + [20867] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 4, + ACTIONS(1144), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1038), 29, + ACTIONS(1146), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46008,15 +46467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20728] = 3, + [20908] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 4, + ACTIONS(1112), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(994), 29, + ACTIONS(1114), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46046,15 +46505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20769] = 3, + [20949] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 4, + ACTIONS(1008), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1178), 29, + ACTIONS(1010), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46084,7 +46543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20810] = 3, + [20990] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1172), 4, @@ -46122,15 +46581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20851] = 3, + [21031] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 4, + ACTIONS(1280), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1158), 29, + ACTIONS(1282), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46160,15 +46619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20892] = 3, + [21072] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 4, + ACTIONS(1176), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1198), 29, + ACTIONS(1178), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46198,72 +46657,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20933] = 22, + [21113] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(689), 1, + ACTIONS(706), 1, anon_sym_RBRACK, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1796), 1, + ACTIONS(1827), 1, anon_sym_SEMI, - ACTIONS(1798), 1, + ACTIONS(1829), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - STATE(1190), 1, + STATE(1192), 1, aux_sym_array_expression_repeat1, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [21012] = 3, + [21192] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 4, + ACTIONS(1056), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1206), 29, + ACTIONS(1058), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46293,15 +46752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21053] = 3, + [21233] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 4, + ACTIONS(1224), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1194), 29, + ACTIONS(1226), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46331,15 +46790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21094] = 3, + [21274] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 4, + ACTIONS(1212), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1106), 29, + ACTIONS(1214), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46369,72 +46828,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21135] = 22, + [21315] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(679), 1, - anon_sym_RBRACK, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1800), 1, + ACTIONS(1168), 4, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1802), 1, - anon_sym_COMMA, - STATE(464), 1, - sym_arguments, - STATE(1303), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [21214] = 3, + 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(1128), 4, + ACTIONS(1136), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1130), 29, + 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, @@ -46464,53 +46942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21255] = 3, + [21438] = 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, - [21296] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(948), 4, + ACTIONS(1108), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(950), 29, + ACTIONS(1110), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46540,15 +46980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21337] = 3, + [21479] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 4, + ACTIONS(968), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1074), 29, + ACTIONS(970), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46578,15 +47018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21378] = 3, + [21520] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 4, + ACTIONS(1092), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1030), 29, + ACTIONS(1094), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46616,15 +47056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21419] = 3, + [21561] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 4, + ACTIONS(1052), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1026), 29, + ACTIONS(1054), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46654,15 +47094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21460] = 3, + [21602] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 4, + ACTIONS(1044), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1018), 29, + ACTIONS(1046), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46692,15 +47132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21501] = 3, + [21643] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 4, + ACTIONS(1036), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1214), 29, + ACTIONS(1038), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46730,15 +47170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21542] = 3, + [21684] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 4, + ACTIONS(1240), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1014), 29, + ACTIONS(1242), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46768,15 +47208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21583] = 3, + [21725] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 4, + ACTIONS(1032), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1006), 29, + ACTIONS(1034), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46806,15 +47246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21624] = 3, + [21766] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 4, + ACTIONS(1028), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1002), 29, + ACTIONS(1030), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46844,15 +47284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21665] = 3, + [21807] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 4, + ACTIONS(1020), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(990), 29, + ACTIONS(1022), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46882,15 +47322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21706] = 3, + [21848] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 4, + ACTIONS(1012), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1226), 29, + ACTIONS(1014), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46920,15 +47360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21747] = 3, + [21889] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 4, + ACTIONS(1244), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1230), 29, + ACTIONS(1246), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46958,15 +47398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21788] = 3, + [21930] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 4, + ACTIONS(1064), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1046), 29, + ACTIONS(1066), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46996,15 +47436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21829] = 3, + [21971] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 4, + ACTIONS(1276), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1082), 29, + ACTIONS(1278), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47034,15 +47474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21870] = 3, + [22012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 4, + ACTIONS(984), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(962), 29, + ACTIONS(986), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47072,15 +47512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21911] = 3, + [22053] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 4, + ACTIONS(1100), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1138), 29, + ACTIONS(1102), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47110,15 +47550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21952] = 3, + [22094] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 4, + ACTIONS(996), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1134), 29, + ACTIONS(998), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47148,15 +47588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21993] = 3, + [22135] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 4, + ACTIONS(1104), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(982), 29, + ACTIONS(1106), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47186,15 +47626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22034] = 3, + [22176] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 4, + ACTIONS(1000), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(986), 29, + ACTIONS(1002), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47224,15 +47664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22075] = 3, + [22217] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 4, + ACTIONS(1004), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(970), 29, + ACTIONS(1006), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47262,157 +47702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22116] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1804), 1, - anon_sym_impl, - ACTIONS(1806), 1, - anon_sym_const, - ACTIONS(1808), 1, - anon_sym_POUND, - ACTIONS(1810), 1, - anon_sym_COLON_COLON, - ACTIONS(1814), 1, - anon_sym_GT, - ACTIONS(1818), 1, - anon_sym_default, - ACTIONS(1820), 1, - sym_identifier, - STATE(1254), 1, - sym_generic_type, - STATE(1264), 1, - sym_generic_type_with_turbofish, - STATE(1443), 1, - sym_scoped_type_identifier, - STATE(1501), 1, - sym_scoped_identifier, - ACTIONS(1816), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(660), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1812), 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, - [22182] = 4, + [22258] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(1507), 11, - anon_sym_EQ, + ACTIONS(1534), 1, 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(1505), 20, - anon_sym_LBRACK, + ACTIONS(1831), 1, 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, - [22224] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(587), 1, - anon_sym_RPAREN, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1822), 1, - anon_sym_COMMA, - STATE(464), 1, - sym_arguments, - STATE(1277), 1, - aux_sym_arguments_repeat1, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [22300] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1531), 1, - anon_sym_LBRACE, - ACTIONS(1519), 11, + STATE(442), 1, + sym_field_initializer_list, + ACTIONS(579), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47422,9 +47722,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1517), 20, + ACTIONS(575), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47441,99 +47741,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [22342] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(673), 1, - anon_sym_RBRACK, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1824), 1, - anon_sym_COMMA, - STATE(464), 1, - sym_arguments, - STATE(1266), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [22418] = 16, + [22304] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1826), 1, + ACTIONS(1833), 1, anon_sym_RPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1238), 1, + STATE(998), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47548,12 +47792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [22484] = 4, + [22370] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1533), 1, + ACTIONS(1566), 1, anon_sym_LBRACE, - ACTIONS(1515), 11, + ACTIONS(1544), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -47565,7 +47809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1513), 20, + ACTIONS(1542), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -47586,127 +47830,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [22526] = 21, + [22412] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1832), 1, + ACTIONS(1839), 1, anon_sym_COMMA, - ACTIONS(1834), 1, - anon_sym_RPAREN, - STATE(464), 1, + STATE(469), 1, sym_arguments, - STATE(1324), 1, + STATE(1279), 1, aux_sym_arguments_repeat1, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22602] = 21, + [22488] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(675), 1, + ACTIONS(690), 1, anon_sym_RBRACK, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1836), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - STATE(1331), 1, + STATE(1332), 1, aux_sym_array_expression_repeat1, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22678] = 6, + [22564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1523), 1, - anon_sym_BANG, - ACTIONS(1838), 1, - anon_sym_COLON_COLON, - STATE(439), 1, - sym_field_initializer_list, - ACTIONS(567), 10, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(1526), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47716,9 +47957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, - anon_sym_LBRACE, + ACTIONS(1524), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47735,97 +47976,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [22724] = 21, + [22606] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1840), 1, + ACTIONS(1843), 1, anon_sym_COMMA, - ACTIONS(1842), 1, + ACTIONS(1845), 1, anon_sym_RPAREN, - STATE(464), 1, + STATE(469), 1, sym_arguments, - STATE(1231), 1, + STATE(1325), 1, aux_sym_arguments_repeat1, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22800] = 16, + [22682] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, + 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(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1857), 1, + anon_sym_GT, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1863), 1, sym_identifier, - ACTIONS(1844), 1, - anon_sym_GT, - STATE(1254), 1, + STATE(1256), 1, sym_generic_type, - STATE(1264), 1, + STATE(1266), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(660), 2, + STATE(662), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, + STATE(1400), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47841,41 +48121,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22866] = 16, + [22790] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, + ACTIONS(1847), 1, anon_sym_impl, - ACTIONS(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1863), 1, sym_identifier, - ACTIONS(1846), 1, + ACTIONS(1865), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1256), 1, sym_generic_type, - STATE(1264), 1, + STATE(1266), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(660), 2, + STATE(662), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, + STATE(1400), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47891,41 +48171,96 @@ static const uint16_t ts_small_parse_table[] = { 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(1804), 1, + ACTIONS(1847), 1, anon_sym_impl, - ACTIONS(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1863), 1, sym_identifier, - ACTIONS(1848), 1, + ACTIONS(1871), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1256), 1, sym_generic_type, - STATE(1264), 1, + STATE(1266), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(660), 2, + STATE(662), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, + STATE(1400), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47944,38 +48279,38 @@ static const uint16_t ts_small_parse_table[] = { [22998] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, + ACTIONS(1847), 1, anon_sym_impl, - ACTIONS(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1863), 1, sym_identifier, - ACTIONS(1850), 1, + ACTIONS(1873), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1256), 1, sym_generic_type, - STATE(1264), 1, + STATE(1266), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(660), 2, + STATE(662), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, + STATE(1400), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47994,38 +48329,38 @@ static const uint16_t ts_small_parse_table[] = { [23064] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, + ACTIONS(1847), 1, anon_sym_impl, - ACTIONS(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1863), 1, sym_identifier, - ACTIONS(1852), 1, + ACTIONS(1875), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1256), 1, sym_generic_type, - STATE(1264), 1, + STATE(1266), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(660), 2, + STATE(662), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, + STATE(1400), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48044,38 +48379,138 @@ static const uint16_t ts_small_parse_table[] = { [23130] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, + 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(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1820), 1, + ACTIONS(1863), 1, sym_identifier, - ACTIONS(1854), 1, + ACTIONS(1879), 1, anon_sym_GT, - STATE(1254), 1, + STATE(1256), 1, sym_generic_type, - STATE(1264), 1, + STATE(1266), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + 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(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(660), 2, + STATE(662), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, + STATE(1400), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48091,67 +48526,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [23196] = 21, + [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(581), 1, + ACTIONS(593), 1, anon_sym_RPAREN, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1856), 1, + ACTIONS(1885), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - STATE(1163), 1, + STATE(1166), 1, aux_sym_arguments_repeat1, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23272] = 4, + [23480] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1539), 1, + ACTIONS(1558), 1, anon_sym_LBRACE, - ACTIONS(1499), 11, + ACTIONS(1530), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -48163,7 +48653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1497), 20, + ACTIONS(1528), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -48184,42 +48674,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [23314] = 16, + [23522] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - ACTIONS(1858), 1, + ACTIONS(1887), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(996), 1, + STATE(998), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48234,90 +48724,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23380] = 16, + [23588] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_default, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1860), 1, + 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, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(996), 1, - sym__type, - STATE(1402), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [23446] = 15, + 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(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, - anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1364), 1, - sym_scoped_identifier, - STATE(1394), 1, + STATE(1264), 1, sym__type, - STATE(885), 5, + 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(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48332,60 +48824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23509] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1583), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_COLON_COLON, - ACTIONS(1581), 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(1579), 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, - [23552] = 4, + [23722] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1864), 1, + ACTIONS(1891), 1, anon_sym_RBRACE, - ACTIONS(1866), 9, + ACTIONS(1893), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PIPE, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1868), 21, + ACTIONS(1895), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -48402,45 +48855,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [23593] = 15, + [23763] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1576), 1, anon_sym_AT, - ACTIONS(1557), 1, + ACTIONS(1578), 1, anon_sym_default, - ACTIONS(1561), 1, + ACTIONS(1582), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(875), 1, + STATE(883), 1, sym__type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1364), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48455,14 +48909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23656] = 5, + [23826] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1870), 1, + ACTIONS(1897), 1, anon_sym_BANG, - ACTIONS(1872), 1, + ACTIONS(1899), 1, anon_sym_COLON_COLON, - ACTIONS(1581), 10, + ACTIONS(1586), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48473,7 +48927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1579), 19, + ACTIONS(1584), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -48493,40 +48947,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [23699] = 15, + [23869] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1543), 1, + STATE(1544), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48541,40 +48995,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23762] = 15, + [23932] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1249), 1, + STATE(1251), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48589,93 +49043,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23825] = 20, + [23995] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(206), 1, + 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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23898] = 15, + [24131] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1557), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1561), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(991), 1, - sym__type, - STATE(1362), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(1383), 1, + sym__type, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48690,40 +49192,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23961] = 15, + [24194] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, - anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1381), 1, + STATE(1557), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48738,40 +49240,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24024] = 15, + [24257] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, - sym_scoped_identifier, - STATE(1555), 1, + STATE(1278), 1, sym__type, - STATE(885), 5, + 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(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48786,194 +49288,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24087] = 20, + [24320] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(711), 1, + ACTIONS(726), 1, anon_sym_RPAREN, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1876), 1, + ACTIONS(1903), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24160] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, - anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_default, - ACTIONS(1830), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(1276), 1, - sym__type, - STATE(1402), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [24223] = 20, + [24393] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1878), 1, + ACTIONS(1905), 1, anon_sym_RBRACE, - ACTIONS(1880), 1, + ACTIONS(1907), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24296] = 15, + [24466] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1368), 1, + STATE(1370), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48988,40 +49442,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24359] = 15, + [24529] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(1367), 1, + STATE(1369), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49036,40 +49490,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24422] = 15, + [24592] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1594), 1, + 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(885), 5, + 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(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49084,22 +49586,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24485] = 4, + [24718] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1882), 1, + ACTIONS(1909), 1, anon_sym_RBRACE, - ACTIONS(1884), 9, + ACTIONS(1911), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PIPE, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1886), 21, + ACTIONS(1913), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -49116,45 +49617,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24526] = 15, + [24759] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1331), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49169,40 +49671,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24589] = 15, + [24822] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + 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(820), 1, - anon_sym_AT, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1502), 1, + anon_sym_AT, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(1330), 1, + STATE(883), 1, sym__type, - STATE(1402), 1, + STATE(984), 1, + sym_scoped_type_identifier, + STATE(1366), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49217,92 +49771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24652] = 19, + [24956] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + 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, - ACTIONS(1547), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1888), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24723] = 15, + 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(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(875), 1, - sym__type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1339), 1, + sym__type, + STATE(1366), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49317,15 +49857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24786] = 5, + [25062] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1773), 1, - anon_sym_BANG, - ACTIONS(1890), 1, - anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(1530), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -49335,8 +49872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, + ACTIONS(1528), 20, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -49353,42 +49892,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [24829] = 15, + [25101] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1335), 1, + STATE(1363), 1, sym__type, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49403,10 +49941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24892] = 3, + [25164] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 11, + ACTIONS(1530), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -49418,8 +49956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1497), 20, - anon_sym_LBRACE, + ACTIONS(1528), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -49438,41 +49975,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [24931] = 15, + [25203] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, - anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1361), 1, - sym__type, - STATE(1364), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(1583), 1, + sym__type, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49487,76 +50025,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24994] = 3, + [25266] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 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(1497), 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, - [25033] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, - sym_scoped_identifier, - STATE(1581), 1, + STATE(1297), 1, sym__type, - STATE(885), 5, + 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(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49571,166 +50073,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25096] = 19, + [25329] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1892), 2, + ACTIONS(1919), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25167] = 19, + [25400] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1894), 2, + ACTIONS(1921), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25238] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, - anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_default, - ACTIONS(1830), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(1295), 1, - sym__type, - STATE(1402), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [25301] = 5, + [25471] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1523), 1, + ACTIONS(1534), 1, anon_sym_BANG, - ACTIONS(1896), 1, + ACTIONS(1923), 1, anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -49741,7 +50195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, + ACTIONS(575), 19, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, @@ -49761,403 +50215,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [25344] = 20, + [25514] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1588), 1, + anon_sym_BANG, + ACTIONS(1925), 1, + anon_sym_COLON_COLON, + ACTIONS(1586), 10, anon_sym_EQ, - ACTIONS(1898), 1, - anon_sym_COMMA, - ACTIONS(1900), 1, - anon_sym_RPAREN, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25417] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1584), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1547), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_SEMI, - ACTIONS(1902), 1, - anon_sym_RBRACE, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25490] = 20, + 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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1904), 1, - anon_sym_LBRACE, - ACTIONS(1906), 1, - anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - STATE(80), 1, - sym_match_block, - STATE(464), 1, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(1927), 1, + anon_sym_COMMA, + ACTIONS(1929), 1, + anon_sym_RPAREN, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1926), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25563] = 20, + [25630] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(83), 1, - anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + ACTIONS(1931), 1, + anon_sym_RBRACE, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25636] = 19, + [25703] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1933), 1, + anon_sym_LBRACE, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - STATE(464), 1, + STATE(80), 1, + sym_match_block, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1930), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1611), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1955), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25707] = 15, + [25776] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(1436), 1, + STATE(1444), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 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, - [25770] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1932), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [25841] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1804), 1, - anon_sym_impl, - ACTIONS(1806), 1, - anon_sym_const, - ACTIONS(1808), 1, - anon_sym_POUND, - ACTIONS(1810), 1, - anon_sym_COLON_COLON, - ACTIONS(1818), 1, - anon_sym_default, - ACTIONS(1820), 1, - sym_identifier, - STATE(1254), 1, - sym_generic_type, - STATE(1264), 1, - sym_generic_type_with_turbofish, - STATE(1443), 1, - sym_scoped_type_identifier, - STATE(1501), 1, - sym_scoped_identifier, - ACTIONS(1816), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(660), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1398), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50172,41 +50460,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [25904] = 15, + [25839] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1499), 1, + STATE(1494), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50221,40 +50508,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25967] = 15, + [25902] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1164), 1, + STATE(1169), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50269,251 +50556,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26030] = 19, + [25965] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1934), 2, + ACTIONS(1959), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26101] = 20, + [26036] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(85), 1, + anon_sym_RBRACE, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - ACTIONS(1936), 1, - anon_sym_RBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26174] = 20, + [26109] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(212), 1, - anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_SEMI, - STATE(464), 1, + 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(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1963), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26247] = 20, + [26251] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(709), 1, + ACTIONS(716), 1, anon_sym_RPAREN, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1876), 1, + ACTIONS(1903), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26320] = 15, + [26324] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + 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(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1207), 1, + STATE(1209), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50528,40 +51020,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26383] = 15, + [26596] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1488), 1, + STATE(1490), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50576,173 +51068,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26446] = 20, + [26659] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - ACTIONS(1938), 1, + ACTIONS(1967), 1, anon_sym_RBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + 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, - [26519] = 20, + 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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - ACTIONS(1940), 1, + ACTIONS(1971), 1, anon_sym_RBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26592] = 20, + [26848] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(97), 1, + ACTIONS(99), 1, anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26665] = 5, + [26921] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1942), 1, - anon_sym_else, - STATE(771), 1, - sym_else_clause, - ACTIONS(547), 10, + ACTIONS(1634), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -50753,7 +51282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(545), 19, + ACTIONS(1570), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -50773,66 +51302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [26708] = 20, + [26962] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_SEMI, - ACTIONS(1944), 1, - anon_sym_RBRACE, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26781] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1607), 2, + ACTIONS(1568), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(1597), 10, + ACTIONS(1572), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -50843,7 +51319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1595), 19, + ACTIONS(1570), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -50863,77 +51339,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [26822] = 4, + [27003] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1593), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1597), 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(1595), 19, + 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, - 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, - [26863] = 15, + [27076] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1253), 1, + STATE(1255), 1, sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50948,40 +51440,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26926] = 15, + [27139] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1529), 1, + STATE(1531), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50996,39 +51488,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26989] = 15, + [27202] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, + 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(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1946), 1, + ACTIONS(1975), 1, sym_identifier, - STATE(1104), 1, + STATE(1106), 1, sym_generic_type, - STATE(1107), 1, + STATE(1109), 1, sym_generic_type_with_turbofish, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(667), 2, + STATE(669), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1220), 2, + STATE(1222), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51044,40 +51584,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [27052] = 15, + [27328] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(1461), 1, + STATE(1463), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51092,199 +51632,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27115] = 20, + [27391] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - ACTIONS(1948), 1, + ACTIONS(1977), 1, anon_sym_RBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27188] = 20, + [27464] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(216), 1, + ACTIONS(221), 1, anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_SEMI, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27261] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - ACTIONS(1950), 1, - anon_sym_RBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27334] = 15, + [27537] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(1462), 1, + STATE(1464), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51299,40 +51786,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27397] = 15, + [27600] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, + ACTIONS(1502), 1, anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1504), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1510), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(984), 1, sym_scoped_type_identifier, - STATE(1364), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(1463), 1, + STATE(1465), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51347,373 +51834,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27460] = 20, + [27663] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1906), 1, + 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(1914), 1, + 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(1916), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1952), 1, + ACTIONS(1981), 1, anon_sym_LBRACE, STATE(256), 1, sym_match_block, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, + ACTIONS(1939), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1926), 5, + ACTIONS(1955), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27533] = 20, + [27809] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(85), 1, + ACTIONS(87), 1, anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27606] = 20, + [27882] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1876), 1, + ACTIONS(1903), 1, anon_sym_COMMA, - ACTIONS(1954), 1, + ACTIONS(1983), 1, anon_sym_RPAREN, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27679] = 19, + [27955] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1956), 2, + ACTIONS(1985), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27750] = 19, + [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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1958), 2, + ACTIONS(1989), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27821] = 15, + [28160] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1804), 1, - anon_sym_impl, - ACTIONS(1806), 1, - anon_sym_const, - ACTIONS(1808), 1, - anon_sym_POUND, - ACTIONS(1810), 1, - anon_sym_COLON_COLON, - ACTIONS(1818), 1, - anon_sym_default, - ACTIONS(1960), 1, - sym_identifier, - STATE(1157), 1, - sym_generic_type_with_turbofish, - STATE(1159), 1, - sym_generic_type, - STATE(1443), 1, - sym_scoped_type_identifier, - STATE(1501), 1, - sym_scoped_identifier, - ACTIONS(1816), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(819), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1350), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1812), 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, - [27884] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1962), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27955] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1511), 10, + ACTIONS(1548), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -51724,7 +52212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1509), 21, + ACTIONS(1546), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -51746,10 +52234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [27994] = 3, + [28199] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1503), 10, + ACTIONS(1540), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -51760,7 +52248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1501), 21, + ACTIONS(1538), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -51782,40 +52270,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28033] = 15, + [28238] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1555), 1, + ACTIONS(1576), 1, anon_sym_AT, - ACTIONS(1557), 1, + ACTIONS(1578), 1, anon_sym_default, - ACTIONS(1561), 1, + ACTIONS(1582), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1035), 1, + STATE(1037), 1, sym__type, - STATE(1362), 1, + STATE(1364), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51830,10 +52318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28096] = 3, + [28301] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1529), 10, + ACTIONS(1552), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -51844,7 +52332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1527), 21, + ACTIONS(1550), 21, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -51866,87 +52354,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28135] = 15, + [28340] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_default, - ACTIONS(1830), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(996), 1, - sym__type, - STATE(1402), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [28198] = 15, + 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(1804), 1, + ACTIONS(1847), 1, anon_sym_impl, - ACTIONS(1806), 1, + ACTIONS(1849), 1, anon_sym_const, - ACTIONS(1808), 1, + ACTIONS(1851), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1964), 1, + ACTIONS(1993), 1, sym_identifier, - STATE(1071), 1, - sym_generic_type_with_turbofish, STATE(1072), 1, + sym_generic_type_with_turbofish, + STATE(1073), 1, sym_generic_type, - STATE(1443), 1, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1816), 2, + ACTIONS(1859), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(819), 2, + STATE(821), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1261), 2, + STATE(1263), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51962,10 +52454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [28261] = 3, + [28474] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 11, + ACTIONS(1556), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -51977,7 +52469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1513), 20, + ACTIONS(1554), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -51998,40 +52490,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28300] = 15, + [28513] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1477), 1, - anon_sym_AT, - ACTIONS(1479), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1483), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(972), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1364), 1, - sym_scoped_identifier, - STATE(1378), 1, + STATE(998), 1, sym__type, - STATE(885), 5, + 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(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52046,10 +52538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28363] = 3, + [28576] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 11, + ACTIONS(1526), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52061,7 +52553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1517), 20, + ACTIONS(1524), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52082,10 +52574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28402] = 3, + [28615] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 11, + ACTIONS(1544), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52097,7 +52589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1505), 20, + ACTIONS(1542), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52118,352 +52610,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28441] = 20, + [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(707), 1, + ACTIONS(724), 1, anon_sym_RPAREN, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1876), 1, + ACTIONS(1903), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28514] = 20, + [28790] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1966), 1, + ACTIONS(1995), 1, anon_sym_RBRACE, - ACTIONS(1968), 1, + ACTIONS(1997), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28587] = 20, + [28863] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1876), 1, + ACTIONS(1903), 1, anon_sym_COMMA, - ACTIONS(1970), 1, + ACTIONS(1999), 1, anon_sym_RPAREN, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28660] = 20, + [28936] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(214), 1, + ACTIONS(219), 1, anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28733] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, - anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_default, - ACTIONS(1830), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym__type, - STATE(1402), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [28796] = 19, + [29009] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1972), 2, + ACTIONS(2001), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28867] = 15, + [29080] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, + 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(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(875), 1, + STATE(883), 1, sym__type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52478,199 +53018,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28930] = 20, + [29206] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - ACTIONS(1974), 1, + ACTIONS(2003), 1, anon_sym_RBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29003] = 20, + [29279] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1906), 1, + ACTIONS(1935), 1, anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1976), 1, + ACTIONS(2005), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - STATE(777), 1, + STATE(805), 1, sym_match_block, - ACTIONS(1910), 2, + ACTIONS(1939), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1926), 5, + ACTIONS(1955), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29076] = 20, + [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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1978), 1, + ACTIONS(2007), 1, anon_sym_COMMA, - ACTIONS(1980), 1, + ACTIONS(2009), 1, anon_sym_RPAREN, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29149] = 15, + [29488] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(1216), 8, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(820), 1, + 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(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(1418), 1, + STATE(1405), 1, sym__type, - STATE(885), 5, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52685,10 +53362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29212] = 3, + [29663] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 11, + ACTIONS(1526), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52700,7 +53377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1513), 20, + ACTIONS(1524), 20, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -52721,63 +53398,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [29251] = 20, + [29702] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(81), 1, + ACTIONS(83), 1, anon_sym_RBRACE, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1874), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29324] = 3, + [29775] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 11, + ACTIONS(1556), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52789,7 +53466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1517), 20, + ACTIONS(1554), 20, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -52810,93 +53487,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [29363] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(705), 1, - anon_sym_RPAREN, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1876), 1, - anon_sym_COMMA, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29436] = 15, + [29814] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, ACTIONS(836), 1, + anon_sym_AT, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1835), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1837), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1262), 1, - sym__type, - STATE(1402), 1, + STATE(1404), 1, sym_scoped_identifier, - STATE(885), 5, + STATE(1580), 1, + sym__type, + STATE(881), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52911,40 +53535,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29499] = 15, + [29877] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(806), 1, + ACTIONS(822), 1, anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, + ACTIONS(854), 1, sym_super, - ACTIONS(1469), 1, + ACTIONS(1494), 1, anon_sym_LBRACK, - ACTIONS(1471), 1, + ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1576), 1, + anon_sym_AT, + ACTIONS(1578), 1, anon_sym_default, - ACTIONS(1830), 1, + ACTIONS(1582), 1, sym_identifier, - STATE(866), 1, + STATE(862), 1, sym_generic_type_with_turbofish, - STATE(869), 1, + STATE(871), 1, sym_generic_type, - STATE(886), 1, + STATE(894), 1, sym_scoped_type_identifier, - STATE(1402), 1, - sym_scoped_identifier, - STATE(1577), 1, + STATE(998), 1, sym__type, - STATE(885), 5, + 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(1473), 14, + ACTIONS(1498), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52959,10 +53583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29562] = 3, + [29940] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 11, + ACTIONS(1544), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52974,7 +53598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1505), 20, + ACTIONS(1542), 20, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -52995,175 +53619,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [29601] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, - anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_LPAREN, - ACTIONS(1555), 1, - anon_sym_AT, - ACTIONS(1557), 1, - anon_sym_default, - ACTIONS(1561), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(996), 1, - sym__type, - STATE(1362), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [29664] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(806), 1, - anon_sym_COLON_COLON, - ACTIONS(820), 1, - anon_sym_AT, - ACTIONS(836), 1, - sym_super, - ACTIONS(1469), 1, - anon_sym_LBRACK, - ACTIONS(1471), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - anon_sym_default, - ACTIONS(1830), 1, - sym_identifier, - STATE(866), 1, - sym_generic_type_with_turbofish, - STATE(869), 1, - sym_generic_type, - STATE(886), 1, - sym_scoped_type_identifier, - STATE(1399), 1, - sym__type, - STATE(1402), 1, - sym_scoped_identifier, - STATE(885), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1473), 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, - [29727] = 3, + [29979] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 9, - anon_sym_LBRACK, + ACTIONS(2011), 1, anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AT, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1198), 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, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_mutable_specifier, - sym_super, - [29766] = 14, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1914), 1, - anon_sym_CARET, - ACTIONS(1916), 1, - anon_sym_AMP, - ACTIONS(1918), 1, - anon_sym_PIPE, - STATE(464), 1, - sym_arguments, - ACTIONS(1912), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1924), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1577), 3, + ACTIONS(579), 10, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1908), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1575), 12, + 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, @@ -53173,118 +53653,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29826] = 19, + anon_sym_DOT, + anon_sym_QMARK, + [30019] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1906), 1, - anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(1918), 1, - anon_sym_PIPE, - ACTIONS(1920), 1, - anon_sym_AMP_AMP, - ACTIONS(1922), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1982), 1, - anon_sym_LBRACE, - STATE(464), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(792), 1, sym_arguments, - ACTIONS(1910), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1926), 5, + 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, - [29896] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1866), 9, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1868), 21, - 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, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [29934] = 9, + 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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1908), 3, + ACTIONS(1941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 7, + ACTIONS(1616), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 15, + ACTIONS(1614), 15, anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53300,156 +53742,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29984] = 8, + [30129] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(791), 1, - sym_arguments, - ACTIONS(1577), 10, + ACTIONS(1616), 1, anon_sym_EQ, - anon_sym_STAR, + 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, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1575), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, + 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_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, - [30032] = 18, + [30195] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1713), 1, + ACTIONS(1616), 1, anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1920), 1, - anon_sym_AMP_AMP, - ACTIONS(1922), 1, - anon_sym_PIPE_PIPE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, + ACTIONS(1939), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1711), 6, + 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, - [30100] = 3, + [30259] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 9, - anon_sym_POUND, + ACTIONS(1596), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1598), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1198), 21, - 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, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [30138] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1593), 1, - anon_sym_COLON_COLON, - ACTIONS(1597), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_AMP, + ACTIONS(1616), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1595), 19, + ACTIONS(1614), 12, 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, @@ -53459,39 +53884,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30178] = 12, + [30317] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1916), 1, - anon_sym_AMP, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1912), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 4, + ACTIONS(1616), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 13, + ACTIONS(1614), 13, anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53505,77 +53927,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30234] = 19, + [30371] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1992), 1, - anon_sym_RBRACK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, + 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, - [30304] = 4, + 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(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1597), 10, - anon_sym_EQ, + 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_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1595), 19, + ACTIONS(1614), 15, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53590,14 +54012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30344] = 4, + [30477] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1994), 1, - anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(527), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -53608,7 +54026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, + ACTIONS(525), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -53628,36 +54046,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [30384] = 8, + anon_sym_else, + [30515] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(1943), 1, + anon_sym_CARET, + ACTIONS(1945), 1, + anon_sym_AMP, + ACTIONS(1947), 1, + anon_sym_PIPE, + STATE(469), 1, sym_arguments, - ACTIONS(1603), 10, + 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_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1937), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1601), 15, - anon_sym_CARET, + ACTIONS(1614), 12, + anon_sym_LBRACE, 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, @@ -53667,145 +54093,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30432] = 19, + [30575] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1996), 1, - anon_sym_COMMA, - STATE(464), 1, + ACTIONS(2031), 1, + anon_sym_LBRACE, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1955), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30502] = 19, + [30645] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1998), 1, - anon_sym_COMMA, - STATE(464), 1, + STATE(792), 1, sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1616), 10, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [30572] = 13, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1914), 1, - anon_sym_CARET, - ACTIONS(1916), 1, - anon_sym_AMP, - STATE(464), 1, - sym_arguments, - ACTIONS(1912), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1908), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 12, - anon_sym_LBRACE, + 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, @@ -53815,131 +54183,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30630] = 16, + anon_sym_EQ_GT, + [30693] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1577), 1, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - STATE(464), 1, + ACTIONS(1949), 1, + anon_sym_AMP_AMP, + ACTIONS(1951), 1, + anon_sym_PIPE_PIPE, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, + ACTIONS(1939), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1575), 8, + ACTIONS(1694), 6, 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, - [30694] = 17, + [30761] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1216), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1547), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1577), 1, - anon_sym_EQ, - ACTIONS(1914), 1, - anon_sym_CARET, - ACTIONS(1916), 1, - anon_sym_AMP, - ACTIONS(1918), 1, - anon_sym_PIPE, - ACTIONS(1920), 1, - anon_sym_AMP_AMP, - STATE(464), 1, - sym_arguments, - ACTIONS(1910), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1928), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1575), 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, - [30760] = 10, + 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(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - STATE(464), 1, - sym_arguments, - ACTIONS(1912), 2, + 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, - ACTIONS(1908), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 15, + ACTIONS(1570), 19, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53954,10 +54303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30812] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [30839] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(499), 10, + ACTIONS(1634), 1, + anon_sym_COLON_COLON, + ACTIONS(1572), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -53968,7 +54321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(497), 20, + ACTIONS(1570), 19, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -53986,98 +54340,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_else, - [30850] = 18, + [30879] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1705), 1, - anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - STATE(464), 1, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2033), 1, + anon_sym_RBRACK, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1703), 6, - anon_sym_LBRACE, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30918] = 3, + [30949] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1884), 9, - anon_sym_POUND, + ACTIONS(2013), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(2017), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1886), 21, - 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, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [30956] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1591), 10, + 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, @@ -54088,10 +54416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1589), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1628), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54106,114 +54431,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [30994] = 19, + [30997] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1982), 1, - anon_sym_EQ_GT, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(2000), 1, - anon_sym_EQ, - ACTIONS(2008), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(2014), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(2016), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - STATE(791), 1, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2035), 1, + anon_sym_RBRACK, + STATE(469), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2020), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31064] = 18, + [31067] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1761), 1, - anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - STATE(464), 1, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2037), 1, + anon_sym_RBRACK, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, + 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(1912), 2, + 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(1924), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1759), 6, - anon_sym_LBRACE, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31132] = 3, + [31207] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1567), 10, + ACTIONS(2041), 1, + anon_sym_COLON_COLON, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54224,9 +54601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1565), 20, + ACTIONS(575), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -54245,213 +54621,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31170] = 18, + [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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1683), 1, + ACTIONS(1772), 1, anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, + ACTIONS(1939), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1681), 6, + 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, - [31238] = 19, + [31353] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(1874), 1, - anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + 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, - [31308] = 19, + [31421] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2024), 1, - anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + 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, - [31378] = 19, + [31489] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + 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, - ACTIONS(1547), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2026), 1, - anon_sym_RBRACK, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, + 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, - ACTIONS(1783), 5, + 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, - [31448] = 3, + 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(523), 10, + ACTIONS(1622), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54462,8 +54891,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(521), 20, + ACTIONS(1620), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -54482,382 +54912,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_else, - [31486] = 19, + [31605] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + 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(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2028), 1, + ACTIONS(2045), 1, anon_sym_RBRACK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31556] = 19, + [31723] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2030), 1, + ACTIONS(2047), 1, anon_sym_RBRACK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31626] = 19, + [31793] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2032), 1, + ACTIONS(2049), 1, anon_sym_RBRACK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31696] = 19, + [31863] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2034), 1, + ACTIONS(2051), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31766] = 19, + [31933] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2036), 1, + ACTIONS(2053), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31836] = 3, + [32003] = 19, 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), 20, + 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, - 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, - [31874] = 19, + [32073] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1906), 1, - anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1916), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1918), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1920), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1922), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(2038), 1, - anon_sym_LBRACE, - STATE(464), 1, + ACTIONS(1806), 1, + anon_sym_EQ, + ACTIONS(2057), 1, + anon_sym_COMMA, + STATE(469), 1, sym_arguments, - ACTIONS(1910), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1908), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1928), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1926), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31944] = 11, + [32143] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - STATE(464), 1, - sym_arguments, - ACTIONS(1912), 2, + ACTIONS(551), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1924), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1908), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 13, - anon_sym_LBRACE, + 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, @@ -54867,566 +55340,618 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31998] = 19, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [32181] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2040), 1, + ACTIONS(2059), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32068] = 19, + [32251] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(1876), 1, + ACTIONS(1903), 1, anon_sym_COMMA, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32138] = 19, + [32321] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + 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, - ACTIONS(1547), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2042), 1, - anon_sym_RBRACK, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32208] = 19, + 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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2044), 1, + ACTIONS(2061), 1, anon_sym_RBRACK, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32278] = 19, + [32429] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1772), 1, + anon_sym_EQ, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(2069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2046), 1, - anon_sym_RBRACK, - STATE(464), 1, + STATE(792), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(2063), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1770), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32348] = 19, + anon_sym_EQ_GT, + [32497] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2048), 1, + ACTIONS(2073), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32418] = 19, + [32567] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(2069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(2075), 1, anon_sym_EQ, - ACTIONS(2050), 1, - anon_sym_SEMI, - STATE(464), 1, + ACTIONS(2079), 1, + anon_sym_EQ_GT, + STATE(792), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(2063), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(2077), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32488] = 19, + [32637] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2052), 1, + ACTIONS(2081), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32558] = 19, + [32707] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2054), 1, - anon_sym_SEMI, - STATE(464), 1, + ACTIONS(2083), 1, + anon_sym_COMMA, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32628] = 4, + [32777] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2056), 1, - anon_sym_COLON_COLON, - ACTIONS(567), 10, + 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, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(563), 19, + 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, - 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, - [32668] = 19, + [32917] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1728), 1, + anon_sym_EQ, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1551), 1, - anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(2069), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2058), 1, - anon_sym_SEMI, - STATE(464), 1, + STATE(792), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(2063), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1726), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32738] = 8, + anon_sym_EQ_GT, + [32985] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(1573), 10, + ACTIONS(1594), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -55437,7 +55962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1571), 15, + ACTIONS(1592), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55453,20 +55978,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [32786] = 3, + [33033] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 9, + 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, - sym_numeric_literal, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1094), 21, + ACTIONS(1098), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -55483,298 +56058,299 @@ static const uint16_t ts_small_parse_table[] = { 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, - [32824] = 18, + [33141] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1705), 1, + ACTIONS(1672), 1, anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(2014), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - ACTIONS(2016), 1, + ACTIONS(2069), 1, anon_sym_PIPE_PIPE, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1703), 6, + 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, - [32892] = 10, + [33209] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(791), 1, - sym_arguments, - ACTIONS(2006), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2002), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1577), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1575), 15, - anon_sym_CARET, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32944] = 19, + [33279] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2060), 1, - anon_sym_COMMA, - STATE(464), 1, + ACTIONS(2093), 1, + anon_sym_SEMI, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33014] = 19, + [33349] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2062), 1, - anon_sym_SEMI, - STATE(464), 1, + STATE(792), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, + 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, - [33084] = 19, + 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(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2064), 1, + ACTIONS(1901), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33154] = 17, + [33471] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1577), 1, + ACTIONS(1616), 1, anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(2014), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1575), 7, + ACTIONS(1614), 7, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -55782,46 +56358,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [33220] = 16, + [33537] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1577), 1, + ACTIONS(1616), 1, anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1575), 8, + ACTIONS(1614), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -55830,125 +56406,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [33284] = 13, + [33601] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(1652), 1, anon_sym_AMP, - STATE(791), 1, + 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(2006), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1575), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33342] = 11, + [33671] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - STATE(791), 1, + 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(2006), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(1674), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1575), 13, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33396] = 12, + [33741] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2010), 1, - anon_sym_AMP, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 4, + ACTIONS(1616), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 13, + ACTIONS(1614), 13, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55962,74 +56551,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33452] = 18, + [33795] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1761), 1, - anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(2023), 1, + anon_sym_AMP, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2008), 1, - anon_sym_CARET, - ACTIONS(2010), 1, - anon_sym_AMP, - ACTIONS(2012), 1, - anon_sym_PIPE, - ACTIONS(2014), 1, - anon_sym_AMP_AMP, - ACTIONS(2016), 1, - anon_sym_PIPE_PIPE, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1759), 6, + 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, - [33520] = 9, + [33851] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2002), 3, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1577), 7, + ACTIONS(1616), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56037,7 +56620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1575), 15, + ACTIONS(1614), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56053,319 +56636,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33570] = 14, + [33901] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - STATE(791), 1, + 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(2006), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1577), 3, - anon_sym_EQ, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2002), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1575), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33630] = 18, + [33971] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1713), 1, - anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(2014), 1, - anon_sym_AMP_AMP, - ACTIONS(2016), 1, - anon_sym_PIPE_PIPE, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + 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(2022), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1711), 6, + 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, - [33698] = 19, + [34031] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1935), 1, + anon_sym_EQ, + ACTIONS(1943), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1945), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1947), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1949), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1951), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2066), 1, - anon_sym_RBRACK, - STATE(464), 1, + ACTIONS(2079), 1, + anon_sym_LBRACE, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1939), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1937), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1955), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33768] = 19, + [34101] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, + ACTIONS(1911), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1986), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(2000), 1, - anon_sym_EQ, - ACTIONS(2008), 1, + 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(2010), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(2012), 1, + 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(2014), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - ACTIONS(2016), 1, + ACTIONS(2069), 1, anon_sym_PIPE_PIPE, - ACTIONS(2038), 1, - anon_sym_EQ_GT, - STATE(791), 1, + ACTIONS(2075), 1, + anon_sym_EQ, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2020), 5, + ACTIONS(2077), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33838] = 18, + [34209] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1683), 1, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2013), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(2017), 1, anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(2008), 1, + ACTIONS(2021), 1, anon_sym_CARET, - ACTIONS(2010), 1, + ACTIONS(2023), 1, anon_sym_AMP, - ACTIONS(2012), 1, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + ACTIONS(2065), 1, anon_sym_PIPE, - ACTIONS(2014), 1, + ACTIONS(2067), 1, anon_sym_AMP_AMP, - ACTIONS(2016), 1, + ACTIONS(2069), 1, anon_sym_PIPE_PIPE, - STATE(791), 1, + STATE(792), 1, sym_arguments, - ACTIONS(2004), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2006), 2, + ACTIONS(2019), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 2, + ACTIONS(2025), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2002), 3, + ACTIONS(2063), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2015), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2022), 4, + ACTIONS(2071), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1681), 6, + 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, - [33906] = 19, + [34277] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1547), 1, + ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1551), 1, + ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1687), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1689), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1691), 1, + ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1693), 1, + ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1695), 1, + ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, + ACTIONS(1806), 1, anon_sym_EQ, - ACTIONS(2068), 1, + ACTIONS(2101), 1, anon_sym_SEMI, - STATE(464), 1, + STATE(469), 1, sym_arguments, - ACTIONS(1613), 2, + ACTIONS(1648), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1615), 2, + ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1685), 2, + ACTIONS(1674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 3, + ACTIONS(1646), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1697), 4, + ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1783), 5, + ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33976] = 8, + [34347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1984), 1, - anon_sym_LBRACK, - ACTIONS(1986), 1, - anon_sym_LPAREN, - ACTIONS(1988), 1, - anon_sym_DOT, - ACTIONS(1990), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_arguments, - ACTIONS(1543), 10, + ACTIONS(1644), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56376,7 +56985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1541), 15, + ACTIONS(1642), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56391,64 +57002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [34024] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1545), 1, - anon_sym_LBRACK, - ACTIONS(1547), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, anon_sym_DOT, - ACTIONS(1551), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(1687), 1, - anon_sym_CARET, - ACTIONS(1689), 1, - anon_sym_AMP, - ACTIONS(1691), 1, - anon_sym_PIPE, - ACTIONS(1693), 1, - anon_sym_AMP_AMP, - ACTIONS(1695), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1779), 1, - anon_sym_EQ, - ACTIONS(2070), 1, - anon_sym_SEMI, - STATE(464), 1, - sym_arguments, - ACTIONS(1613), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1615), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1685), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1697), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1783), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [34094] = 4, + [34384] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2072), 1, - anon_sym_COLON_COLON, - ACTIONS(567), 10, + ACTIONS(1788), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56459,8 +57019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, - anon_sym_LBRACE, + ACTIONS(1786), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56478,11 +57037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [34134] = 3, + [34421] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(487), 10, + ACTIONS(1684), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56493,7 +57053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(485), 19, + ACTIONS(1682), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56513,10 +57073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34171] = 3, + [34458] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(543), 10, + ACTIONS(519), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56527,7 +57087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(541), 19, + ACTIONS(517), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56547,10 +57107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34208] = 3, + [34495] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1675), 10, + ACTIONS(1736), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56561,7 +57121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1673), 19, + ACTIONS(1734), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56581,10 +57141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34245] = 3, + [34532] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(527), 10, + ACTIONS(523), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56595,7 +57155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(525), 19, + ACTIONS(521), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56615,10 +57175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34282] = 3, + [34569] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1679), 10, + ACTIONS(1732), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56629,7 +57189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1677), 19, + ACTIONS(1730), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56649,10 +57209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34319] = 3, + [34606] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(531), 10, + ACTIONS(511), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56663,7 +57223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(529), 19, + ACTIONS(509), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56683,10 +57243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34356] = 3, + [34643] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1655), 10, + ACTIONS(1704), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56697,7 +57257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1653), 19, + ACTIONS(1702), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56717,10 +57277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34393] = 3, + [34680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1627), 10, + ACTIONS(1712), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56731,7 +57291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1625), 19, + ACTIONS(1710), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56751,10 +57311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34430] = 3, + [34717] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(495), 10, + ACTIONS(472), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56765,7 +57325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(493), 19, + ACTIONS(470), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56785,10 +57345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34467] = 3, + [34754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1643), 10, + ACTIONS(484), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56799,7 +57359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1641), 19, + ACTIONS(482), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56819,10 +57379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34504] = 3, + [34791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1741), 10, + ACTIONS(507), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56833,7 +57393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1739), 19, + ACTIONS(505), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56853,10 +57413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34541] = 3, + [34828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(535), 10, + ACTIONS(1758), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56867,7 +57427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(533), 19, + ACTIONS(1756), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56887,10 +57447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34578] = 3, + [34865] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1735), 10, + ACTIONS(1776), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56901,7 +57461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1733), 19, + ACTIONS(1774), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56921,10 +57481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34615] = 3, + [34902] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(511), 10, + ACTIONS(1692), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56935,7 +57495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(509), 19, + ACTIONS(1690), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56955,10 +57515,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34652] = 3, + [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(1745), 10, + ACTIONS(1660), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56969,7 +57572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1743), 19, + ACTIONS(1658), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -56989,10 +57592,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34689] = 3, + [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(1647), 10, + ACTIONS(1708), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57003,7 +57640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1645), 19, + ACTIONS(1706), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57023,10 +57660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34726] = 3, + [35105] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1709), 10, + ACTIONS(1700), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57037,7 +57674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 19, + ACTIONS(1698), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57057,53 +57694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34763] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2074), 1, - anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_RBRACE, - ACTIONS(2078), 1, - anon_sym_COMMA, - ACTIONS(2080), 1, - anon_sym_COLON_COLON, - ACTIONS(2082), 1, - anon_sym_STAR, - ACTIONS(2086), 1, - anon_sym_default, - ACTIONS(2088), 1, - sym_identifier, - STATE(998), 1, - sym_scoped_identifier, - STATE(1516), 1, - sym_generic_type_with_turbofish, - STATE(1279), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2084), 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, - [34818] = 3, + [35142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1671), 10, + ACTIONS(515), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57114,7 +57708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1669), 19, + ACTIONS(513), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57134,10 +57728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34855] = 3, + [35179] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1623), 10, + ACTIONS(1796), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57148,7 +57742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1621), 19, + ACTIONS(1794), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57168,10 +57762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34892] = 3, + [35216] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1765), 10, + ACTIONS(1784), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57182,7 +57776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1763), 19, + ACTIONS(1782), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57202,10 +57796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34929] = 3, + [35253] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1619), 10, + ACTIONS(1744), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57216,7 +57810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1617), 19, + ACTIONS(1742), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57236,10 +57830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34966] = 3, + [35290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1701), 10, + ACTIONS(496), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57250,7 +57844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1699), 19, + ACTIONS(494), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57270,10 +57864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35003] = 3, + [35327] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(503), 10, + ACTIONS(1753), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57284,7 +57878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(501), 19, + ACTIONS(1750), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57304,10 +57898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35040] = 3, + [35364] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1753), 10, + ACTIONS(1640), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57318,7 +57912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1751), 19, + ACTIONS(1638), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57338,10 +57932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35077] = 3, + [35401] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1717), 10, + ACTIONS(1762), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57352,7 +57946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1715), 19, + ACTIONS(1760), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57372,10 +57966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35114] = 3, + [35438] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1749), 10, + ACTIONS(1724), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57386,7 +57980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1747), 19, + ACTIONS(1722), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57406,78 +58000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35151] = 3, + [35475] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1663), 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(1661), 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, - [35188] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1726), 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(1723), 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, - [35225] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1757), 10, + ACTIONS(535), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57488,7 +58014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1755), 19, + ACTIONS(533), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57508,10 +58034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35262] = 3, + [35512] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1639), 10, + ACTIONS(1716), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57522,7 +58048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1637), 19, + ACTIONS(1714), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57542,10 +58068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35299] = 3, + [35549] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(515), 10, + ACTIONS(1572), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57556,7 +58082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(513), 19, + ACTIONS(1570), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57576,10 +58102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35336] = 3, + [35586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1597), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57590,7 +58116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1595), 19, + ACTIONS(575), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57610,10 +58136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35373] = 3, + [35623] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1631), 10, + ACTIONS(1792), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57624,7 +58150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1629), 19, + ACTIONS(1790), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57644,10 +58170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35410] = 3, + [35660] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1721), 10, + ACTIONS(1740), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57658,7 +58184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1719), 19, + ACTIONS(1738), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57678,10 +58204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35447] = 3, + [35697] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1731), 10, + ACTIONS(1748), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57692,7 +58218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1729), 19, + ACTIONS(1746), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57712,10 +58238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35484] = 3, + [35734] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1635), 10, + ACTIONS(547), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57726,7 +58252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1633), 19, + ACTIONS(545), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57746,10 +58272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35521] = 3, + [35771] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(567), 10, + ACTIONS(579), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57760,7 +58286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, + ACTIONS(575), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57780,10 +58306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35558] = 3, + [35808] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1651), 10, + ACTIONS(539), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57794,7 +58320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1649), 19, + ACTIONS(537), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57814,10 +58340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35595] = 3, + [35845] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(460), 10, + ACTIONS(1720), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57828,7 +58354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(458), 19, + ACTIONS(1718), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57848,44 +58374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35632] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2090), 8, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - sym_numeric_literal, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2092), 21, - 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, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [35669] = 3, + [35882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(567), 10, + ACTIONS(1688), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57896,7 +58388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(563), 19, + ACTIONS(1686), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57916,10 +58408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35706] = 3, + [35919] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(472), 10, + ACTIONS(1664), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57930,7 +58422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(470), 19, + ACTIONS(1662), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57950,10 +58442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35743] = 3, + [35956] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1659), 10, + ACTIONS(1668), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57964,7 +58456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1657), 19, + ACTIONS(1666), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57984,10 +58476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35780] = 3, + [35993] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1667), 10, + ACTIONS(1780), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57998,7 +58490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1665), 19, + ACTIONS(1778), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58018,10 +58510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35817] = 3, + [36030] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1769), 10, + ACTIONS(1766), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58032,7 +58524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1767), 19, + ACTIONS(1764), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58052,32 +58544,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35854] = 11, + [36067] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2123), 1, anon_sym_RBRACE, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1400), 5, + STATE(1401), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58093,32 +58585,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [35906] = 11, + [36119] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2125), 1, anon_sym_RBRACE, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1400), 5, + STATE(1401), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58134,30 +58626,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [35958] = 10, + [36171] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1573), 5, + STATE(1401), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58173,30 +58665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36007] = 10, + [36220] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1517), 5, + STATE(1522), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58212,30 +58704,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36056] = 10, + [36269] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1520), 5, + STATE(1575), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58251,30 +58743,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36105] = 10, + [36318] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1400), 5, + STATE(1572), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58290,30 +58782,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36154] = 10, + [36367] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2109), 1, anon_sym_COLON_COLON, - ACTIONS(2082), 1, + ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2086), 1, + ACTIONS(2115), 1, anon_sym_default, - ACTIONS(2088), 1, + ACTIONS(2117), 1, sym_identifier, - STATE(998), 1, + STATE(1005), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - STATE(1569), 5, + STATE(1519), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2084), 15, + ACTIONS(2113), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58329,19 +58821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36203] = 5, + [36416] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2098), 1, + ACTIONS(2127), 1, anon_sym_POUND, - STATE(819), 2, + STATE(821), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(605), 3, + ACTIONS(617), 3, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1463), 19, + ACTIONS(1488), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -58361,15 +58853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36240] = 3, + [36453] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 4, + ACTIONS(1216), 4, anon_sym_POUND, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1198), 19, + ACTIONS(1218), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -58389,24 +58881,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36271] = 9, + [36484] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1810), 1, + ACTIONS(1853), 1, anon_sym_COLON_COLON, - ACTIONS(1818), 1, + ACTIONS(1861), 1, anon_sym_default, - ACTIONS(2101), 1, + ACTIONS(2130), 1, sym_identifier, - STATE(1182), 1, - sym_generic_type_with_turbofish, - STATE(1256), 1, + STATE(1258), 1, sym_generic_type, - STATE(1443), 1, + STATE(1260), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, sym_scoped_type_identifier, - STATE(1501), 1, + STATE(1503), 1, sym_scoped_identifier, - ACTIONS(1812), 15, + ACTIONS(1855), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58422,22 +58914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36313] = 8, + [36526] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1531), 1, - sym_generic_type_with_turbofish, - STATE(1590), 1, + STATE(1484), 1, sym_attribute, - ACTIONS(2103), 15, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58453,22 +58945,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36352] = 8, + [36565] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1521), 1, + STATE(1523), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58484,22 +58976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36391] = 8, + [36604] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1503), 1, + STATE(1505), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58515,22 +59007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36430] = 8, + [36643] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1482), 1, - sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + STATE(1592), 1, + sym_attribute, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58546,22 +59038,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36469] = 8, + [36682] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1477), 1, + STATE(1507), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58577,22 +59069,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36508] = 8, + [36721] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1505), 1, + STATE(1479), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58608,22 +59100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36547] = 8, + [36760] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1473), 1, - sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + STATE(1536), 1, + sym_attribute, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58639,22 +59131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36586] = 8, + [36799] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1531), 1, - sym_generic_type_with_turbofish, - STATE(1542), 1, + STATE(1475), 1, sym_attribute, - ACTIONS(2103), 15, + STATE(1533), 1, + sym_generic_type_with_turbofish, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58670,22 +59162,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36625] = 8, + [36838] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1490), 1, + STATE(1472), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58701,22 +59193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36664] = 8, + [36877] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1470), 1, + STATE(1492), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58732,22 +59224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36703] = 8, + [36916] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(922), 1, + ACTIONS(942), 1, anon_sym_COLON_COLON, - ACTIONS(2105), 1, + ACTIONS(2134), 1, anon_sym_default, - ACTIONS(2107), 1, + ACTIONS(2136), 1, sym_identifier, - STATE(960), 1, + STATE(968), 1, sym_scoped_identifier, - STATE(1500), 1, + STATE(1502), 1, sym_attribute, - STATE(1531), 1, + STATE(1533), 1, sym_generic_type_with_turbofish, - ACTIONS(2103), 15, + ACTIONS(2132), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58763,20 +59255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36742] = 7, + [36955] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2109), 1, + ACTIONS(2138), 1, anon_sym_COLON_COLON, - ACTIONS(2113), 1, + ACTIONS(2142), 1, anon_sym_default, - ACTIONS(2115), 1, + ACTIONS(2144), 1, sym_identifier, - STATE(1336), 1, + STATE(1338), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - ACTIONS(2111), 15, + ACTIONS(2140), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58792,20 +59284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36778] = 7, + [36991] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2109), 1, + ACTIONS(2138), 1, anon_sym_COLON_COLON, - ACTIONS(2119), 1, + ACTIONS(2148), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2150), 1, sym_identifier, - STATE(1373), 1, + STATE(1375), 1, sym_scoped_identifier, - STATE(1516), 1, + STATE(1518), 1, sym_generic_type_with_turbofish, - ACTIONS(2117), 15, + ACTIONS(2146), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58821,17 +59313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36814] = 4, + [37027] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 1, + ACTIONS(1544), 1, anon_sym_COLON, - ACTIONS(1497), 4, + ACTIONS(1542), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2123), 11, + ACTIONS(2152), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -58843,17 +59335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [36840] = 4, + [37053] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 1, + ACTIONS(1526), 1, anon_sym_COLON, - ACTIONS(1513), 4, + ACTIONS(1524), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2125), 11, + ACTIONS(2154), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -58865,17 +59357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [36866] = 4, + [37079] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 1, + ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(1517), 4, + ACTIONS(1554), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2127), 11, + ACTIONS(2156), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -58887,17 +59379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [36892] = 4, + [37105] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 1, + ACTIONS(1530), 1, anon_sym_COLON, - ACTIONS(1505), 4, + ACTIONS(1528), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2129), 11, + ACTIONS(2158), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -58909,24 +59401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [36918] = 9, + [37131] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2131), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - ACTIONS(2135), 1, + ACTIONS(2164), 1, anon_sym_COLON, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(2139), 1, + ACTIONS(2168), 1, anon_sym_COLON_COLON, - ACTIONS(2141), 1, + ACTIONS(2170), 1, anon_sym_LPAREN, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(860), 1, + STATE(865), 1, sym_type_arguments, - ACTIONS(2133), 7, + ACTIONS(2162), 7, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -58934,15 +59426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [36952] = 4, + [37165] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 1, + ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(2125), 2, + ACTIONS(2156), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1513), 10, + ACTIONS(1554), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -58953,34 +59445,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [36975] = 4, + [37188] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 1, + ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(2123), 2, + ACTIONS(1554), 12, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1497), 10, 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, - [36998] = 4, + [37209] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 1, + ACTIONS(1526), 1, anon_sym_COLON, - ACTIONS(2127), 2, + ACTIONS(2154), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1517), 10, + ACTIONS(1524), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -58991,30 +59482,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37021] = 3, + [37232] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 1, + ACTIONS(1544), 1, anon_sym_COLON, - ACTIONS(1513), 12, + 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_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37042] = 3, + [37255] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 1, + ACTIONS(1530), 1, anon_sym_COLON, - ACTIONS(1517), 12, + ACTIONS(1528), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59027,30 +59519,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37063] = 3, + [37276] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 1, + ACTIONS(1530), 1, anon_sym_COLON, - ACTIONS(1497), 12, + 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_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37084] = 3, + [37299] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 1, + ACTIONS(1544), 1, anon_sym_COLON, - ACTIONS(1505), 12, + ACTIONS(1542), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59063,29 +59556,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37105] = 4, + [37320] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 1, + ACTIONS(1526), 1, anon_sym_COLON, - ACTIONS(2129), 2, + ACTIONS(1524), 12, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1505), 10, 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, - [37128] = 2, + [37341] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1593), 12, + ACTIONS(1568), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59098,10 +59590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37146] = 2, + [37359] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(466), 12, + ACTIONS(478), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59114,37 +59606,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37164] = 13, + [37377] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2145), 1, - anon_sym_impl, - ACTIONS(2147), 1, - anon_sym_trait, - ACTIONS(2149), 1, - anon_sym_type, - ACTIONS(2151), 1, - anon_sym_const, - ACTIONS(2153), 1, - anon_sym_mod, - ACTIONS(2155), 1, - anon_sym_struct, - ACTIONS(2157), 1, - anon_sym_enum, - ACTIONS(2159), 1, - anon_sym_fn, - ACTIONS(2161), 1, - anon_sym_use, - ACTIONS(2163), 1, - anon_sym_extern, - STATE(1178), 1, - sym_extern, - STATE(1242), 1, - sym_function, - [37204] = 2, + 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(474), 12, + ACTIONS(486), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59157,10 +59643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37222] = 2, + [37423] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(537), 12, + ACTIONS(529), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59173,10 +59659,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37240] = 2, + [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(1607), 12, + ACTIONS(1634), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59189,74 +59702,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37258] = 7, + [37499] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2167), 1, - anon_sym_COLON, - ACTIONS(2169), 1, - anon_sym_BANG, - ACTIONS(2171), 1, - anon_sym_COLON_COLON, - STATE(864), 1, - sym_type_arguments, - ACTIONS(2165), 7, + 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, - [37286] = 13, + anon_sym_nopanic, + [37517] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2159), 1, + ACTIONS(2196), 1, anon_sym_fn, - ACTIONS(2163), 1, + ACTIONS(2200), 1, anon_sym_extern, - ACTIONS(2173), 1, + ACTIONS(2202), 1, anon_sym_impl, - ACTIONS(2175), 1, + ACTIONS(2204), 1, anon_sym_trait, - ACTIONS(2177), 1, + ACTIONS(2206), 1, anon_sym_type, - ACTIONS(2179), 1, + ACTIONS(2208), 1, anon_sym_const, - ACTIONS(2181), 1, + ACTIONS(2210), 1, anon_sym_mod, - ACTIONS(2183), 1, + ACTIONS(2212), 1, anon_sym_struct, - ACTIONS(2185), 1, + ACTIONS(2214), 1, anon_sym_enum, - ACTIONS(2187), 1, + ACTIONS(2216), 1, anon_sym_use, - STATE(1183), 1, - sym_function, - STATE(1196), 1, + STATE(1179), 1, sym_extern, - [37326] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(517), 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, - [37344] = 2, + STATE(1244), 1, + sym_function, + [37557] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2189), 12, + ACTIONS(2218), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59269,16 +59761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37362] = 4, + [37575] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2191), 1, + ACTIONS(2220), 1, anon_sym_RBRACK, - ACTIONS(2127), 3, + ACTIONS(2152), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1517), 7, + ACTIONS(1542), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -59286,10 +59778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37383] = 2, + [37596] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2194), 11, + ACTIONS(2223), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59301,10 +59793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37400] = 2, + [37613] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 11, + ACTIONS(2227), 1, + anon_sym_COLON_COLON, + ACTIONS(2225), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59312,50 +59806,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37417] = 4, + [37632] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2198), 1, - anon_sym_RBRACK, - ACTIONS(2123), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1497), 7, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(2231), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [37438] = 4, + 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(2201), 1, - anon_sym_RBRACK, - ACTIONS(2129), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1505), 7, - anon_sym_BANG, + ACTIONS(2233), 1, + anon_sym_RBRACE, + ACTIONS(2235), 1, + anon_sym_POUND, + ACTIONS(2237), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [37459] = 3, + 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(2206), 1, - anon_sym_COLON_COLON, - ACTIONS(2204), 10, + ACTIONS(2245), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59363,34 +59858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37478] = 2, + [37699] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2208), 11, - anon_sym_LBRACE, + 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_implicits, - anon_sym_COLON_COLON, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - [37495] = 4, + anon_sym_PIPE, + [37724] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2210), 1, + ACTIONS(2249), 1, anon_sym_RBRACK, - ACTIONS(2125), 3, + ACTIONS(2154), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1513), 7, + ACTIONS(1524), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -59398,12 +59898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37516] = 3, + [37745] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2215), 1, + ACTIONS(2254), 1, anon_sym_COLON_COLON, - ACTIONS(2213), 10, + ACTIONS(2252), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59414,26 +59914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37535] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2219), 1, - anon_sym_LPAREN, - ACTIONS(2217), 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, - [37554] = 2, + [37764] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2125), 11, + ACTIONS(2156), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59445,12 +59929,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37571] = 3, + [37781] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2221), 1, + 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(2213), 10, + ACTIONS(2225), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59461,29 +59967,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37590] = 6, + [37831] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2135), 1, - anon_sym_COLON, - ACTIONS(2137), 1, + ACTIONS(2262), 1, + anon_sym_RBRACK, + ACTIONS(2156), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1554), 7, anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LPAREN, - ACTIONS(2223), 1, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(2133), 7, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, + 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_RPAREN, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_PIPE, - [37615] = 2, + anon_sym_EQ_GT, + anon_sym_if, + [37873] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2225), 10, + ACTIONS(2268), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59491,35 +60012,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37631] = 10, + [37890] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2131), 1, - anon_sym_LBRACE, - ACTIONS(2137), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LPAREN, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2227), 1, - anon_sym_SEMI, - ACTIONS(2229), 1, - anon_sym_RBRACK, - ACTIONS(2232), 1, - anon_sym_COLON_COLON, - STATE(860), 1, - sym_type_arguments, - ACTIONS(2133), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [37663] = 2, + 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(2234), 10, + ACTIONS(2272), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -59530,10 +60044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [37679] = 2, + [37922] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2236), 10, + ACTIONS(2274), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59544,68 +60058,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37695] = 2, + [37938] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2238), 10, - anon_sym_LBRACE, + 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, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - [37711] = 10, + 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(2240), 1, + ACTIONS(2280), 1, anon_sym_RBRACE, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2284), 1, anon_sym_COMMA, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2248), 1, + ACTIONS(2288), 1, sym_identifier, - STATE(1179), 1, + STATE(1307), 1, sym_enum_variant, - STATE(1442), 1, + STATE(1443), 1, sym_field_declaration, - STATE(1492), 1, + STATE(1500), 1, sym_visibility_modifier, - STATE(928), 2, + STATE(920), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [37743] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2131), 1, - anon_sym_LBRACE, - ACTIONS(2133), 1, - anon_sym_PIPE, - ACTIONS(2135), 1, - anon_sym_COLON, - ACTIONS(2137), 1, - anon_sym_BANG, - ACTIONS(2141), 1, - anon_sym_LPAREN, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2250), 1, - anon_sym_COLON_COLON, - STATE(860), 1, - sym_type_arguments, - ACTIONS(2227), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37775] = 2, + [38014] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 10, + ACTIONS(2225), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59616,28 +60128,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37791] = 6, + [38030] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2250), 1, - anon_sym_COLON_COLON, - ACTIONS(2254), 1, + ACTIONS(2292), 1, anon_sym_BANG, - STATE(860), 1, + ACTIONS(2294), 1, + anon_sym_COLON_COLON, + STATE(865), 1, sym_type_arguments, - ACTIONS(2227), 6, + ACTIONS(2290), 6, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - [37815] = 2, + [38054] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2256), 10, + ACTIONS(2296), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59648,24 +60160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37831] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2258), 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, - [37847] = 2, + [38070] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 10, + ACTIONS(2298), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59676,24 +60174,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37863] = 2, + [38086] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2262), 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, - [37879] = 2, + 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(2264), 10, + ACTIONS(2304), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59704,10 +60210,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37895] = 2, + [38134] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2213), 10, + 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, @@ -59718,343 +60244,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37911] = 4, + [38178] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + 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, - STATE(859), 1, + ACTIONS(2294), 1, + anon_sym_COLON_COLON, + STATE(865), 1, sym_type_arguments, - ACTIONS(2213), 8, + 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, - [37931] = 10, + [38226] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2235), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2312), 1, anon_sym_RBRACE, - ACTIONS(2268), 1, - anon_sym_COMMA, - STATE(1306), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(941), 2, + STATE(1006), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [37963] = 9, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38254] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2235), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, + ACTIONS(2239), 1, + anon_sym_DOT_DOT, + ACTIONS(2241), 1, + sym_numeric_literal, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2270), 1, + ACTIONS(2314), 1, anon_sym_RBRACE, - STATE(1346), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(946), 2, + STATE(1006), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [37992] = 9, + STATE(1402), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38282] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2272), 1, - anon_sym_RBRACE, - STATE(1346), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(946), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38021] = 9, + 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(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2274), 1, + ACTIONS(2172), 1, + anon_sym_LT2, + STATE(874), 1, + sym_type_arguments, + ACTIONS(2225), 8, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1346), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(946), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38050] = 9, + 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(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2321), 10, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1346), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(946), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38079] = 8, + 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(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2278), 1, + ACTIONS(2323), 1, anon_sym_LBRACE, - ACTIONS(2280), 1, + ACTIONS(2325), 1, anon_sym_BANG, - ACTIONS(2282), 1, + ACTIONS(2327), 1, anon_sym_COLON_COLON, - ACTIONS(2284), 1, + ACTIONS(2329), 1, anon_sym_LPAREN, - STATE(860), 1, + STATE(865), 1, sym_type_arguments, - ACTIONS(2133), 3, + ACTIONS(2162), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [38106] = 9, + [38377] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2286), 1, - anon_sym_RBRACE, - STATE(1346), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(946), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38135] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2131), 1, + ACTIONS(2160), 1, anon_sym_LBRACE, - ACTIONS(2133), 1, + ACTIONS(2162), 1, anon_sym_PIPE, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(2141), 1, + ACTIONS(2170), 1, anon_sym_LPAREN, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2288), 1, + ACTIONS(2331), 1, anon_sym_COLON_COLON, - STATE(860), 1, + STATE(865), 1, sym_type_arguments, - ACTIONS(2229), 2, + ACTIONS(2316), 2, anon_sym_COMMA, anon_sym_RPAREN, - [38164] = 8, + [38406] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2290), 1, + ACTIONS(494), 9, anon_sym_RBRACE, - ACTIONS(2292), 1, - anon_sym_POUND, - ACTIONS(2294), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, - sym_identifier, - STATE(1030), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1318), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [38191] = 9, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + [38421] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2300), 1, + ACTIONS(2333), 1, anon_sym_RBRACE, - ACTIONS(2302), 1, + ACTIONS(2335), 1, anon_sym_COMMA, - ACTIONS(2304), 1, + ACTIONS(2337), 1, sym_identifier, - STATE(1305), 1, + STATE(1306), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1589), 1, sym_visibility_modifier, - STATE(955), 2, + STATE(961), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38220] = 6, + [38450] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2137), 1, + 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(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2250), 1, + ACTIONS(2294), 1, anon_sym_COLON_COLON, - STATE(860), 1, + STATE(865), 1, sym_type_arguments, - ACTIONS(2227), 5, + ACTIONS(2290), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_implicits, anon_sym_nopanic, - [38243] = 9, + [38488] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2248), 1, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2306), 1, + ACTIONS(2339), 1, anon_sym_RBRACE, - STATE(1346), 1, + STATE(1350), 1, sym_enum_variant, - STATE(1442), 1, + STATE(1443), 1, sym_field_declaration, - STATE(1492), 1, + STATE(1500), 1, sym_visibility_modifier, - STATE(946), 2, + STATE(947), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38272] = 2, + [38517] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(485), 9, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2341), 1, 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, - [38287] = 9, + 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(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2308), 1, + ACTIONS(2343), 1, anon_sym_RBRACE, - ACTIONS(2310), 1, - anon_sym_COMMA, - STATE(1186), 1, + STATE(1350), 1, + sym_enum_variant, + STATE(1443), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1500), 1, sym_visibility_modifier, - STATE(964), 2, + STATE(947), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38316] = 8, + [38575] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, sym_identifier, - ACTIONS(2312), 1, + ACTIONS(2345), 1, anon_sym_RBRACE, - ACTIONS(2314), 1, + ACTIONS(2347), 1, anon_sym_COMMA, - STATE(1030), 2, + STATE(1188), 1, + sym_field_declaration, + STATE(1589), 1, + sym_visibility_modifier, + STATE(971), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1281), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [38343] = 2, + [38604] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(470), 9, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2349), 1, 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, - [38358] = 4, + 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(2135), 1, - anon_sym_COLON, - ACTIONS(2316), 1, - anon_sym_COLON_COLON, - ACTIONS(2133), 7, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2351), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [38377] = 2, + 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(489), 9, + ACTIONS(474), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60064,60 +60607,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, - [38392] = 2, + [38677] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2318), 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, - [38406] = 2, + 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(2320), 8, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2353), 1, + anon_sym_COLON_COLON, + ACTIONS(2162), 7, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38420] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2123), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2198), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1497), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [38438] = 2, + [38721] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2322), 8, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2355), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [38452] = 2, + 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(2324), 8, + ACTIONS(2357), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60126,28 +60672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38466] = 8, + [38764] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2326), 1, - anon_sym_RBRACE, - STATE(1356), 1, + STATE(1298), 1, + sym_enum_variant, + STATE(1443), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1500), 1, sym_visibility_modifier, - STATE(967), 2, + STATE(995), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38492] = 2, + [38790] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2328), 8, + ACTIONS(2359), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60156,10 +60702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38506] = 2, + [38804] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2330), 8, + ACTIONS(2361), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60168,10 +60714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38520] = 2, + [38818] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2332), 8, + ACTIONS(2363), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60180,10 +60726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38534] = 2, + [38832] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2334), 8, + ACTIONS(2365), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60192,10 +60738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38548] = 2, + [38846] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2336), 8, + ACTIONS(2367), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60204,68 +60750,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38562] = 2, + [38860] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2338), 8, + ACTIONS(2282), 1, + anon_sym_POUND, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2337), 1, + sym_identifier, + ACTIONS(2369), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [38576] = 8, + 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(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2340), 1, - anon_sym_RBRACE, - STATE(1356), 1, + STATE(1301), 1, + sym_enum_variant, + STATE(1443), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1500), 1, sym_visibility_modifier, - STATE(967), 2, + STATE(995), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38602] = 4, + [38912] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2125), 2, + ACTIONS(2156), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2210), 2, + ACTIONS(2262), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1513), 4, + ACTIONS(1554), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [38620] = 4, + [38930] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2127), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2191), 2, + ACTIONS(2371), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1517), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_PIPE, - [38638] = 2, + [38944] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2342), 8, + ACTIONS(2373), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60274,10 +60824,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38652] = 2, + [38958] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2344), 8, + 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, @@ -60286,41 +60850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38666] = 4, + [38990] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2129), 2, + ACTIONS(2158), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2201), 2, + ACTIONS(2265), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1505), 4, + ACTIONS(1528), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [38684] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2292), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2346), 1, - anon_sym_RBRACE, - STATE(1030), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1413), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [38708] = 2, + [39008] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2348), 8, + ACTIONS(2377), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60329,82 +60876,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38722] = 8, + [39022] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2337), 1, sym_identifier, - ACTIONS(2350), 1, + ACTIONS(2379), 1, anon_sym_RBRACE, - STATE(1356), 1, + STATE(1359), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1589), 1, sym_visibility_modifier, - STATE(967), 2, + STATE(970), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38748] = 8, + [39048] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2304), 1, - sym_identifier, - ACTIONS(2352), 1, - anon_sym_RBRACE, - STATE(1356), 1, - sym_field_declaration, - STATE(1587), 1, - sym_visibility_modifier, - STATE(967), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38774] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - STATE(1346), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(946), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38800] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - STATE(1296), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(994), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38826] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2354), 8, + ACTIONS(2381), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60413,22 +60906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38840] = 2, + [39062] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2356), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + 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, - [38854] = 2, + [39080] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2358), 8, + ACTIONS(2383), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60437,10 +60932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38868] = 2, + [39094] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2360), 8, + ACTIONS(2385), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60449,10 +60944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38882] = 2, + [39108] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2362), 8, + ACTIONS(2387), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60461,10 +60956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38896] = 2, + [39122] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2362), 8, + ACTIONS(2389), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60473,10 +60968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38910] = 2, + [39136] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2364), 8, + ACTIONS(2391), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60485,10 +60980,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38924] = 2, + [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(2133), 8, + ACTIONS(2395), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60497,10 +61010,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38938] = 2, + [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(2366), 8, + ACTIONS(2399), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60509,27 +61040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38952] = 7, + [39230] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, + ACTIONS(2286), 1, + anon_sym_pub, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2368), 1, - anon_sym_RBRACE, - STATE(1030), 2, + 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, - STATE(1413), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [38976] = 2, + [39256] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2370), 8, + ACTIONS(2401), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60538,10 +61070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38990] = 2, + [39270] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2372), 8, + ACTIONS(2403), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60550,46 +61082,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39004] = 8, + [39284] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2248), 1, - sym_identifier, - STATE(1299), 1, - sym_enum_variant, - STATE(1442), 1, - sym_field_declaration, - STATE(1492), 1, - sym_visibility_modifier, - STATE(994), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39030] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2337), 1, sym_identifier, - ACTIONS(2374), 1, + ACTIONS(2405), 1, anon_sym_RBRACE, - STATE(1356), 1, + STATE(1359), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1589), 1, sym_visibility_modifier, - STATE(967), 2, + STATE(970), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39056] = 2, + [39310] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2376), 8, + ACTIONS(2407), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60598,27 +61112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39070] = 7, + [39324] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2378), 1, + ACTIONS(2409), 8, anon_sym_RBRACE, - STATE(1030), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1413), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [39094] = 2, + 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(2380), 8, + ACTIONS(2409), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60627,62 +61136,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39108] = 8, + [39352] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2248), 1, + ACTIONS(2288), 1, sym_identifier, - STATE(1416), 1, + STATE(1418), 1, sym_enum_variant, - STATE(1442), 1, + STATE(1443), 1, sym_field_declaration, - STATE(1492), 1, + STATE(1500), 1, sym_visibility_modifier, - STATE(994), 2, + STATE(995), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39134] = 8, + [39378] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2337), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2411), 1, anon_sym_RBRACE, - STATE(1356), 1, + STATE(1359), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1589), 1, sym_visibility_modifier, - STATE(967), 2, + STATE(970), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39160] = 6, + [39404] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(2384), 1, + ACTIONS(2413), 1, anon_sym_COLON_COLON, - ACTIONS(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - STATE(860), 1, + STATE(865), 1, sym_type_arguments, - ACTIONS(2227), 4, + ACTIONS(2290), 4, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [39182] = 2, + [39426] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2388), 8, + ACTIONS(2417), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60691,10 +61200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39196] = 2, + [39440] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2390), 8, + ACTIONS(2419), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60703,10 +61212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39210] = 2, + [39454] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2392), 8, + ACTIONS(2421), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60715,10 +61224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39224] = 2, + [39468] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2394), 8, + ACTIONS(2162), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60727,6909 +61236,6915 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39238] = 7, + [39482] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, - sym_identifier, - ACTIONS(2396), 1, + ACTIONS(2423), 8, anon_sym_RBRACE, - STATE(1030), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1413), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [39262] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2398), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_type_arguments, - ACTIONS(2213), 4, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - [39281] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2304), 1, - sym_identifier, - STATE(1201), 1, - sym_field_declaration, - STATE(1587), 1, - sym_visibility_modifier, - STATE(994), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39304] = 6, + anon_sym_PIPE, + [39496] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2169), 1, - anon_sym_BANG, - ACTIONS(2400), 1, - anon_sym_COLON_COLON, - STATE(864), 1, - sym_type_arguments, - ACTIONS(2165), 3, + 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, - [39325] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2292), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - sym_numeric_literal, - ACTIONS(2298), 1, - sym_identifier, - STATE(1030), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1413), 2, - sym_shorthand_field_initializer, - sym_field_initializer, - [39346] = 8, + [39510] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2402), 1, - anon_sym_LBRACE, - ACTIONS(2404), 1, + ACTIONS(2427), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(2406), 1, - anon_sym_LBRACK, - ACTIONS(2408), 1, anon_sym_RBRACK, - ACTIONS(2410), 1, - anon_sym_COLON_COLON, - ACTIONS(2412), 1, - anon_sym_LPAREN, - STATE(1476), 1, - sym_delim_token_tree, - [39371] = 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39524] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2402), 1, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2429), 1, anon_sym_LBRACE, - ACTIONS(2406), 1, - anon_sym_LBRACK, - ACTIONS(2412), 1, - anon_sym_LPAREN, - ACTIONS(2414), 1, - anon_sym_EQ, - ACTIONS(2416), 1, + STATE(874), 1, + sym_type_arguments, + ACTIONS(2225), 4, + anon_sym_SEMI, anon_sym_RBRACK, - ACTIONS(2418), 1, - anon_sym_COLON_COLON, - STATE(1475), 1, - sym_delim_token_tree, - [39396] = 8, + anon_sym_COMMA, + anon_sym_RPAREN, + [39543] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2402), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2406), 1, - anon_sym_LBRACK, - ACTIONS(2412), 1, - anon_sym_LPAREN, - ACTIONS(2414), 1, + ACTIONS(2433), 1, anon_sym_EQ, - ACTIONS(2416), 1, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, anon_sym_RBRACK, - ACTIONS(2420), 1, + ACTIONS(2439), 1, anon_sym_COLON_COLON, - STATE(1475), 1, + ACTIONS(2441), 1, + anon_sym_LPAREN, + STATE(1477), 1, sym_delim_token_tree, - [39421] = 8, + [39568] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2402), 1, - anon_sym_LBRACE, - ACTIONS(2406), 1, - anon_sym_LBRACK, - ACTIONS(2412), 1, - anon_sym_LPAREN, - ACTIONS(2414), 1, - anon_sym_EQ, - ACTIONS(2416), 1, - anon_sym_RBRACK, - ACTIONS(2422), 1, + ACTIONS(2172), 1, + anon_sym_LT2, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2443), 1, anon_sym_COLON_COLON, - STATE(1475), 1, - sym_delim_token_tree, - [39446] = 6, + 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(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2169), 1, + ACTIONS(2178), 1, anon_sym_BANG, - ACTIONS(2424), 1, + ACTIONS(2445), 1, anon_sym_COLON_COLON, - STATE(864), 1, + STATE(861), 1, sym_type_arguments, - ACTIONS(2165), 3, + ACTIONS(2174), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - [39467] = 7, + [39610] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2304), 1, - sym_identifier, - STATE(1356), 1, - sym_field_declaration, - STATE(1587), 1, - sym_visibility_modifier, - STATE(967), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39490] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2242), 1, + ACTIONS(2282), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2286), 1, anon_sym_pub, - ACTIONS(2304), 1, + ACTIONS(2337), 1, sym_identifier, - STATE(1284), 1, + STATE(1334), 1, sym_field_declaration, - STATE(1587), 1, + STATE(1589), 1, sym_visibility_modifier, - STATE(994), 2, + STATE(995), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39513] = 6, + [39633] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2426), 1, + ACTIONS(2447), 1, anon_sym_BANG, - ACTIONS(2428), 1, + ACTIONS(2449), 1, anon_sym_COLON_COLON, - STATE(864), 1, + STATE(861), 1, sym_type_arguments, - ACTIONS(2165), 3, + ACTIONS(2174), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [39534] = 7, + [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(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2430), 1, + ACTIONS(2451), 1, anon_sym_STAR, - STATE(853), 1, + STATE(859), 1, sym_type_arguments, - STATE(1203), 1, + STATE(1219), 1, sym_use_list, - ACTIONS(2432), 2, + ACTIONS(2453), 2, sym_identifier, sym_super, - [39557] = 7, + [39700] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2242), 1, - anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_pub, - ACTIONS(2304), 1, - sym_identifier, - STATE(1419), 1, - sym_field_declaration, - STATE(1587), 1, - sym_visibility_modifier, - STATE(994), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39580] = 7, + 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(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2430), 1, + ACTIONS(2463), 1, anon_sym_STAR, - STATE(848), 1, + STATE(856), 1, sym_type_arguments, - STATE(1203), 1, + STATE(1205), 1, sym_use_list, - ACTIONS(2432), 2, + ACTIONS(2465), 2, sym_identifier, sym_super, - [39603] = 7, + [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(2074), 1, + ACTIONS(2103), 1, anon_sym_LBRACE, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2434), 1, + ACTIONS(2463), 1, anon_sym_STAR, - STATE(857), 1, + STATE(850), 1, sym_type_arguments, - STATE(1217), 1, + STATE(1205), 1, sym_use_list, - ACTIONS(2436), 2, + ACTIONS(2465), 2, sym_identifier, sym_super, - [39626] = 2, + [39821] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1505), 6, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39638] = 2, + 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(1517), 6, + ACTIONS(1554), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [39650] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2386), 1, - anon_sym_LT2, - STATE(859), 1, - sym_type_arguments, - ACTIONS(2213), 4, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [39666] = 6, + [39879] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2440), 1, + ACTIONS(2471), 1, anon_sym_DASH_GT, - ACTIONS(2442), 1, + ACTIONS(2473), 1, anon_sym_implicits, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - STATE(1441), 1, + STATE(1438), 1, sym_nopanic, - ACTIONS(2438), 2, + ACTIONS(2469), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39686] = 6, + [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(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(995), 1, + STATE(980), 1, aux_sym_function_repeat1, - STATE(1392), 1, + STATE(1385), 1, sym_nopanic, - ACTIONS(2446), 2, + ACTIONS(2479), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39706] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2386), 1, - anon_sym_LT2, - ACTIONS(2450), 1, - anon_sym_COMMA, - ACTIONS(2452), 1, - anon_sym_COLON_COLON, - ACTIONS(2454), 1, - anon_sym_GT, - STATE(860), 1, - sym_type_arguments, - STATE(1286), 1, - aux_sym_type_parameters_repeat1, - [39728] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2386), 1, - anon_sym_LT2, - ACTIONS(2452), 1, - anon_sym_COLON_COLON, - ACTIONS(2456), 1, - anon_sym_COMMA, - ACTIONS(2458), 1, - anon_sym_GT, - STATE(860), 1, - sym_type_arguments, - STATE(1259), 1, - aux_sym_type_parameters_repeat1, - [39750] = 6, + [39937] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(995), 1, + STATE(997), 1, aux_sym_function_repeat1, - STATE(1434), 1, + STATE(1357), 1, sym_nopanic, - ACTIONS(2460), 2, + ACTIONS(2483), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39770] = 5, + [39957] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(2141), 1, + ACTIONS(2170), 1, anon_sym_LPAREN, - ACTIONS(2462), 1, + ACTIONS(2485), 1, anon_sym_COLON_COLON, - ACTIONS(2133), 3, + ACTIONS(2162), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39788] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1513), 6, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39800] = 6, + [39975] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(977), 1, + STATE(976), 1, aux_sym_function_repeat1, - STATE(1382), 1, + STATE(1348), 1, sym_nopanic, - ACTIONS(2464), 2, + ACTIONS(2487), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39820] = 5, + [39995] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2280), 1, - anon_sym_BANG, - ACTIONS(2284), 1, - anon_sym_LPAREN, - ACTIONS(2466), 1, - anon_sym_COLON_COLON, - ACTIONS(2133), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39838] = 6, + 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(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(984), 1, + STATE(997), 1, aux_sym_function_repeat1, - STATE(1358), 1, + STATE(1396), 1, sym_nopanic, - ACTIONS(2468), 2, + ACTIONS(2491), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39858] = 7, + [40035] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2165), 1, + 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, - ACTIONS(2167), 1, - anon_sym_COLON, - ACTIONS(2169), 1, + anon_sym_EQ_GT, + anon_sym_if, + [40069] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1524), 6, anon_sym_BANG, - ACTIONS(2470), 1, anon_sym_COLON_COLON, - STATE(864), 1, - sym_type_arguments, - [39880] = 6, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40081] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, - anon_sym_nopanic, - ACTIONS(2448), 1, - anon_sym_COMMA, - STATE(995), 1, - aux_sym_function_repeat1, - STATE(1344), 1, - sym_nopanic, - ACTIONS(2472), 2, - anon_sym_LBRACE, + ACTIONS(2415), 1, + anon_sym_LT2, + STATE(874), 1, + sym_type_arguments, + ACTIONS(2225), 4, anon_sym_SEMI, - [39900] = 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [40097] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, STATE(986), 1, aux_sym_function_repeat1, - STATE(1347), 1, + STATE(1388), 1, sym_nopanic, - ACTIONS(2474), 2, + ACTIONS(2499), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39920] = 6, + [40117] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(995), 1, + STATE(997), 1, aux_sym_function_repeat1, - STATE(1357), 1, + STATE(1436), 1, sym_nopanic, - ACTIONS(2476), 2, + ACTIONS(2501), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39940] = 5, + [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(2137), 1, + ACTIONS(2325), 1, anon_sym_BANG, - ACTIONS(2141), 1, + ACTIONS(2329), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2503), 1, anon_sym_COLON_COLON, - ACTIONS(2133), 3, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(2162), 3, anon_sym_PIPE, - [39958] = 6, + anon_sym_EQ_GT, + anon_sym_if, + [40167] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2448), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - STATE(974), 1, + STATE(979), 1, aux_sym_function_repeat1, - STATE(1383), 1, + STATE(1362), 1, sym_nopanic, - ACTIONS(2480), 2, + ACTIONS(2505), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39978] = 2, + [40187] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1497), 6, + 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, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39990] = 6, + STATE(861), 1, + sym_type_arguments, + [40209] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2484), 1, + ACTIONS(2511), 1, anon_sym_DASH_GT, - ACTIONS(2486), 1, + ACTIONS(2513), 1, anon_sym_implicits, - STATE(1424), 1, + STATE(1420), 1, sym_nopanic, - ACTIONS(2482), 2, + ACTIONS(2509), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40010] = 5, + [40229] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, - anon_sym_nopanic, - ACTIONS(2490), 1, - anon_sym_implicits, - STATE(1386), 1, - sym_nopanic, - ACTIONS(2488), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [40027] = 6, + 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(2492), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2521), 1, + anon_sym_COLON_COLON, + ACTIONS(2523), 1, + anon_sym_as, + ACTIONS(2519), 3, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2496), 1, - anon_sym_LT, - STATE(326), 1, - sym_declaration_list, - STATE(1197), 1, - sym_type_parameters, - [40046] = 5, + anon_sym_COMMA, + [40266] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 1, - anon_sym_PIPE, - ACTIONS(2135), 1, - anon_sym_COLON, - ACTIONS(2206), 1, - anon_sym_COLON_COLON, - ACTIONS(2204), 2, + ACTIONS(2525), 1, + anon_sym_RBRACE, + ACTIONS(2527), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [40063] = 4, + 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(2498), 1, + ACTIONS(2533), 1, anon_sym_POUND, - ACTIONS(1463), 2, + ACTIONS(1488), 2, anon_sym_pub, sym_identifier, - STATE(994), 2, + STATE(995), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [40078] = 4, + [40300] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2503), 1, + 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(995), 1, + STATE(997), 1, aux_sym_function_repeat1, - ACTIONS(2501), 3, + ACTIONS(2540), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_nopanic, - [40093] = 2, + [40334] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2501), 5, + ACTIONS(2540), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_nopanic, - [40104] = 5, + [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(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2452), 1, + ACTIONS(2495), 1, anon_sym_COLON_COLON, - STATE(860), 1, + STATE(865), 1, sym_type_arguments, - ACTIONS(2506), 2, + ACTIONS(2551), 2, anon_sym_COMMA, anon_sym_GT, - [40121] = 4, + [40381] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2510), 1, - anon_sym_COLON_COLON, - ACTIONS(2512), 1, - anon_sym_as, - ACTIONS(2508), 3, + ACTIONS(2529), 1, + sym_identifier, + ACTIONS(2531), 1, + sym_mutable_specifier, + ACTIONS(2553), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2555), 1, anon_sym_COMMA, - [40136] = 2, + 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(2514), 5, + ACTIONS(2559), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40147] = 2, + [40422] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2516), 5, + ACTIONS(2561), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40158] = 4, + [40433] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2512), 1, + ACTIONS(2523), 1, anon_sym_as, - ACTIONS(2518), 1, + ACTIONS(2563), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 3, + ACTIONS(2519), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40173] = 6, + [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(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2520), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(2522), 1, + ACTIONS(2571), 1, anon_sym_SEMI, - STATE(567), 1, - sym_field_declaration_list, - STATE(1328), 1, + STATE(297), 1, + sym_declaration_list, + STATE(1235), 1, sym_type_parameters, - [40192] = 4, + [40484] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2526), 1, + ACTIONS(2575), 1, anon_sym_COLON_COLON, - ACTIONS(2528), 1, + ACTIONS(2577), 1, anon_sym_as, - ACTIONS(2524), 3, + ACTIONS(2573), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40207] = 5, + [40499] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2530), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_RPAREN, - STATE(1308), 1, - aux_sym_parameters_repeat1, - ACTIONS(2133), 2, - anon_sym_COLON, - anon_sym_PIPE, - [40224] = 4, + 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(2512), 1, + ACTIONS(2523), 1, anon_sym_as, - ACTIONS(2534), 1, + ACTIONS(2585), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 3, + ACTIONS(2519), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40239] = 2, + [40544] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2536), 5, + ACTIONS(2587), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40250] = 6, + [40555] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 1, + ACTIONS(2162), 1, anon_sym_PIPE, - ACTIONS(2135), 1, + ACTIONS(2164), 1, anon_sym_COLON, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(2141), 1, + ACTIONS(2170), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2589), 1, anon_sym_COLON_COLON, - [40269] = 6, + [40574] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2540), 1, - anon_sym_RBRACE, - ACTIONS(2542), 1, + ACTIONS(2591), 1, anon_sym_COMMA, - ACTIONS(2544), 1, - sym_identifier, - ACTIONS(2546), 1, - sym_mutable_specifier, - STATE(1173), 1, - sym_field_pattern, - [40288] = 4, + 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(2548), 1, + ACTIONS(2595), 1, anon_sym_POUND, - ACTIONS(605), 2, + ACTIONS(1488), 2, sym_numeric_literal, sym_identifier, - STATE(1009), 2, + STATE(1015), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [40303] = 6, + [40606] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2551), 1, + ACTIONS(2598), 1, anon_sym_RBRACE, - ACTIONS(2553), 1, + ACTIONS(2600), 1, anon_sym_COMMA, - STATE(1194), 1, + STATE(1317), 1, sym_field_pattern, - [40322] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2496), 1, - anon_sym_LT, - ACTIONS(2555), 1, - anon_sym_LBRACE, - ACTIONS(2557), 1, - anon_sym_SEMI, - STATE(560), 1, - sym_declaration_list, - STATE(1247), 1, - sym_type_parameters, - [40341] = 6, + [40625] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, - anon_sym_LT, - ACTIONS(2520), 1, - anon_sym_LBRACE, - ACTIONS(2559), 1, - anon_sym_SEMI, - STATE(533), 1, - sym_field_declaration_list, - STATE(1255), 1, - sym_type_parameters, - [40360] = 5, + 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(2204), 1, - anon_sym_SEMI, - ACTIONS(2561), 1, - anon_sym_RBRACK, - ACTIONS(2564), 1, + ACTIONS(2162), 1, + anon_sym_PIPE, + ACTIONS(2164), 1, + anon_sym_COLON, + ACTIONS(2254), 1, anon_sym_COLON_COLON, - ACTIONS(2133), 2, + ACTIONS(2252), 2, anon_sym_COMMA, - anon_sym_PIPE, - [40377] = 6, + anon_sym_RPAREN, + [40659] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2566), 1, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2568), 1, + ACTIONS(2604), 1, anon_sym_SEMI, - STATE(258), 1, + STATE(296), 1, sym_field_declaration_list, - STATE(1209), 1, + STATE(1211), 1, sym_type_parameters, - [40396] = 5, + [40678] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2074), 1, + ACTIONS(2475), 1, + anon_sym_nopanic, + ACTIONS(2608), 1, + anon_sym_implicits, + STATE(1394), 1, + sym_nopanic, + ACTIONS(2606), 2, anon_sym_LBRACE, - ACTIONS(2430), 1, - anon_sym_STAR, - STATE(1203), 1, - sym_use_list, - ACTIONS(2432), 2, - sym_identifier, - sym_super, - [40413] = 2, + anon_sym_SEMI, + [40695] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2570), 5, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2610), 1, anon_sym_LBRACE, + ACTIONS(2612), 1, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40424] = 2, + STATE(567), 1, + sym_field_declaration_list, + STATE(1329), 1, + sym_type_parameters, + [40714] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2572), 5, - anon_sym_LBRACE, - anon_sym_of, + ACTIONS(1546), 5, anon_sym_SEMI, anon_sym_EQ, - anon_sym_LPAREN, - [40435] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2386), 1, - anon_sym_LT2, - ACTIONS(2452), 1, - anon_sym_COLON_COLON, - STATE(860), 1, - sym_type_arguments, - ACTIONS(2574), 2, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_GT, - [40452] = 2, + [40725] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2576), 5, + ACTIONS(2614), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40463] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1509), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - [40474] = 2, + [40736] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2578), 5, + ACTIONS(2616), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40485] = 2, + [40747] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2580), 5, + ACTIONS(2618), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40496] = 2, + [40758] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 5, + ACTIONS(2620), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40507] = 2, + [40769] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2584), 5, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2569), 1, anon_sym_LBRACE, + ACTIONS(2622), 1, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40518] = 6, + STATE(326), 1, + sym_declaration_list, + STATE(1199), 1, + sym_type_parameters, + [40788] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, - anon_sym_LT, - ACTIONS(2566), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2549), 1, + anon_sym_LT, + ACTIONS(2624), 1, anon_sym_SEMI, - STATE(265), 1, - sym_field_declaration_list, - STATE(1235), 1, + STATE(557), 1, + sym_declaration_list, + STATE(1249), 1, sym_type_parameters, - [40537] = 2, + [40807] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2588), 5, + ACTIONS(2626), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40548] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2544), 1, - sym_identifier, - ACTIONS(2546), 1, - sym_mutable_specifier, - ACTIONS(2590), 1, - anon_sym_RBRACE, - ACTIONS(2592), 1, - anon_sym_COMMA, - STATE(1313), 1, - sym_field_pattern, - [40567] = 2, + [40818] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2594), 5, + ACTIONS(2628), 5, anon_sym_LBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40578] = 6, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40829] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, - anon_sym_LBRACE, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2596), 1, + ACTIONS(2610), 1, + anon_sym_LBRACE, + ACTIONS(2630), 1, anon_sym_SEMI, - STATE(282), 1, - sym_declaration_list, - STATE(1233), 1, + STATE(536), 1, + sym_field_declaration_list, + STATE(1257), 1, sym_type_parameters, - [40597] = 5, + [40848] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, - anon_sym_POUND, - ACTIONS(2598), 1, - sym_numeric_literal, - ACTIONS(2600), 1, + ACTIONS(2103), 1, + anon_sym_LBRACE, + ACTIONS(2463), 1, + anon_sym_STAR, + STATE(1205), 1, + sym_use_list, + ACTIONS(2465), 2, sym_identifier, - STATE(1009), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40614] = 6, + sym_super, + [40865] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, - sym_identifier, - ACTIONS(2546), 1, - sym_mutable_specifier, - ACTIONS(2602), 1, - anon_sym_RBRACE, - ACTIONS(2604), 1, - anon_sym_COMMA, - STATE(1316), 1, - sym_field_pattern, - [40633] = 5, + 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(2386), 1, - anon_sym_LT2, - ACTIONS(2452), 1, - anon_sym_COLON_COLON, - STATE(860), 1, - sym_type_arguments, - ACTIONS(2606), 2, - anon_sym_COMMA, - anon_sym_GT, - [40650] = 2, + 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(1527), 5, + ACTIONS(2252), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2636), 1, + anon_sym_RBRACK, + ACTIONS(2639), 1, anon_sym_COLON_COLON, - anon_sym_GT, - [40661] = 2, + ACTIONS(2162), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [40904] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2608), 5, + ACTIONS(2641), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40672] = 5, + [40915] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_nopanic, - ACTIONS(2612), 1, + ACTIONS(2645), 1, anon_sym_implicits, - STATE(1376), 1, + STATE(1378), 1, sym_nopanic, - ACTIONS(2610), 2, + ACTIONS(2643), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40689] = 2, + [40932] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2614), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40700] = 2, + 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(1501), 5, + ACTIONS(2649), 5, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - [40711] = 5, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40960] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(932), 1, + ACTIONS(952), 1, anon_sym_RPAREN, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_COMMA, - STATE(1298), 1, + STATE(1300), 1, aux_sym_parameters_repeat1, - ACTIONS(2133), 2, + ACTIONS(2162), 2, anon_sym_COLON, anon_sym_PIPE, - [40728] = 2, + [40977] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 5, - anon_sym_LBRACE, + ACTIONS(1538), 5, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40739] = 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40988] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, - anon_sym_LT, - ACTIONS(2555), 1, - anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(1550), 5, anon_sym_SEMI, - STATE(524), 1, - sym_declaration_list, - STATE(1327), 1, - sym_type_parameters, - [40758] = 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [40999] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2622), 1, + ACTIONS(2653), 1, anon_sym_RBRACK, - ACTIONS(2624), 1, + ACTIONS(2655), 1, anon_sym_COMMA, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - STATE(1155), 1, + STATE(1158), 1, aux_sym_tuple_pattern_repeat1, - [40774] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2436), 1, - sym_super, - ACTIONS(2628), 1, - sym_identifier, - STATE(857), 1, - sym_type_arguments, - [40790] = 4, + [41015] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(374), 1, - anon_sym_LBRACE, - ACTIONS(2630), 1, - anon_sym_if, - STATE(789), 2, - sym_block, - sym_if_expression, - [40804] = 4, + 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(2634), 1, + ACTIONS(2663), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(2632), 2, + ACTIONS(2661), 2, anon_sym_RBRACK, anon_sym_RPAREN, - [40818] = 5, + [41043] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, - anon_sym_PIPE, - ACTIONS(2637), 1, - anon_sym_COMMA, - ACTIONS(2639), 1, - anon_sym_RPAREN, - STATE(1283), 1, - aux_sym_tuple_pattern_repeat1, - [40834] = 3, + 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(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2632), 3, + ACTIONS(2661), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - [40846] = 5, + [41069] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2641), 1, + ACTIONS(2668), 1, anon_sym_COMMA, - ACTIONS(2643), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(1291), 1, + STATE(1285), 1, aux_sym_tuple_pattern_repeat1, - [40862] = 5, + [41085] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2645), 1, + ACTIONS(2672), 1, anon_sym_of, - ACTIONS(2647), 1, + ACTIONS(2674), 1, anon_sym_EQ, - STATE(1338), 1, + STATE(1340), 1, sym_type_parameters, - [40878] = 5, + [41101] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2649), 1, + ACTIONS(2676), 1, anon_sym_of, - ACTIONS(2651), 1, + ACTIONS(2678), 1, anon_sym_EQ, - STATE(1341), 1, + STATE(1343), 1, sym_type_parameters, - [40894] = 4, + [41117] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2653), 1, - anon_sym_COLON_COLON, - ACTIONS(2655), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - ACTIONS(2213), 2, + ACTIONS(2680), 1, + anon_sym_COLON_COLON, + ACTIONS(2225), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40908] = 5, + [41131] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2169), 1, - anon_sym_BANG, - ACTIONS(2470), 1, - anon_sym_COLON_COLON, - STATE(864), 1, - sym_type_arguments, - [40924] = 5, + 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(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2657), 1, + ACTIONS(2686), 1, anon_sym_of, - ACTIONS(2659), 1, + ACTIONS(2688), 1, anon_sym_EQ, - STATE(1372), 1, + STATE(1374), 1, sym_type_parameters, - [40940] = 5, + [41163] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2661), 1, - sym_identifier, - ACTIONS(2663), 1, - sym_super, - STATE(848), 1, + ACTIONS(2178), 1, + anon_sym_BANG, + ACTIONS(2507), 1, + anon_sym_COLON_COLON, + STATE(861), 1, sym_type_arguments, - [40956] = 5, + [41179] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2665), 1, + ACTIONS(2690), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [40972] = 3, + [41195] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2236), 2, + ACTIONS(2274), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2324), 2, + ACTIONS(2371), 2, anon_sym_COLON, anon_sym_PIPE, - [40984] = 5, + [41207] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2169), 1, + ACTIONS(2178), 1, anon_sym_BANG, - ACTIONS(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2667), 1, + ACTIONS(2692), 1, anon_sym_COLON_COLON, - STATE(864), 1, + STATE(861), 1, sym_type_arguments, - [41000] = 5, + [41223] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2669), 1, + ACTIONS(2694), 1, anon_sym_LBRACE, - STATE(568), 1, + STATE(569), 1, sym_enum_variant_list, - STATE(1345), 1, + STATE(1347), 1, sym_type_parameters, - [41016] = 5, + [41239] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2671), 1, + ACTIONS(2696), 1, anon_sym_LBRACE, STATE(266), 1, sym_enum_variant_list, - STATE(1371), 1, + STATE(1373), 1, sym_type_parameters, - [41032] = 5, + [41255] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2673), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [41048] = 5, + [41271] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2661), 1, + ACTIONS(2700), 1, sym_identifier, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - STATE(853), 1, + STATE(850), 1, sym_type_arguments, - [41064] = 5, + [41287] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2470), 1, + ACTIONS(2507), 1, anon_sym_COLON_COLON, - ACTIONS(2675), 1, + ACTIONS(2704), 1, anon_sym_BANG, - STATE(864), 1, + STATE(861), 1, sym_type_arguments, - [41080] = 5, + [41303] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2661), 1, + ACTIONS(2700), 1, sym_identifier, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - [41096] = 4, + [41319] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - ACTIONS(2436), 2, + ACTIONS(2453), 2, sym_identifier, sym_super, - [41110] = 5, + [41333] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2330), 1, + ACTIONS(2381), 1, anon_sym_PIPE, - ACTIONS(2677), 1, + ACTIONS(2706), 1, anon_sym_SEMI, - ACTIONS(2679), 1, + ACTIONS(2708), 1, anon_sym_COLON, - ACTIONS(2681), 1, + ACTIONS(2710), 1, anon_sym_EQ, - [41126] = 4, + [41349] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - ACTIONS(2432), 2, + ACTIONS(2465), 2, sym_identifier, sym_super, - [41140] = 5, + [41363] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2661), 1, + ACTIONS(2700), 1, sym_identifier, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - [41156] = 5, + [41379] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2683), 1, + ACTIONS(2712), 1, sym_identifier, - ACTIONS(2685), 1, + ACTIONS(2714), 1, sym_super, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - [41172] = 5, + [41395] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2687), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - [41188] = 5, + [41411] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2683), 1, + ACTIONS(2700), 1, sym_identifier, - ACTIONS(2685), 1, + ACTIONS(2702), 1, sym_super, - STATE(857), 1, + STATE(856), 1, sym_type_arguments, - [41204] = 5, + [41427] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2689), 1, + ACTIONS(2718), 1, anon_sym_COMMA, - ACTIONS(2691), 1, + ACTIONS(2720), 1, anon_sym_RPAREN, - STATE(1311), 1, + STATE(1312), 1, aux_sym_tuple_pattern_repeat1, - [41220] = 5, + [41443] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1844), 1, + ACTIONS(1873), 1, anon_sym_GT, - ACTIONS(2693), 1, + ACTIONS(2722), 1, anon_sym_COMMA, - ACTIONS(2695), 1, + ACTIONS(2724), 1, anon_sym_COLON_COLON, - STATE(1288), 1, + STATE(1290), 1, aux_sym_type_parameters_repeat1, - [41236] = 5, + [41459] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1844), 1, + ACTIONS(1873), 1, anon_sym_GT, - ACTIONS(2221), 1, + ACTIONS(2260), 1, anon_sym_COLON_COLON, - ACTIONS(2693), 1, + ACTIONS(2722), 1, anon_sym_COMMA, - STATE(1288), 1, + STATE(1290), 1, aux_sym_type_parameters_repeat1, - [41252] = 5, + [41475] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2697), 1, + ACTIONS(2726), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [41268] = 5, + [41491] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2699), 1, + ACTIONS(2728), 1, anon_sym_RBRACK, - ACTIONS(2701), 1, + ACTIONS(2730), 1, anon_sym_COMMA, - STATE(1309), 1, + STATE(1310), 1, aux_sym_tuple_pattern_repeat1, - [41284] = 5, + [41507] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2330), 1, + ACTIONS(2381), 1, anon_sym_PIPE, - ACTIONS(2703), 1, + ACTIONS(2732), 1, anon_sym_SEMI, - ACTIONS(2705), 1, + ACTIONS(2734), 1, anon_sym_COLON, - ACTIONS(2707), 1, + ACTIONS(2736), 1, anon_sym_EQ, - [41300] = 4, + [41523] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - ACTIONS(2432), 2, + ACTIONS(2465), 2, sym_identifier, sym_super, - [41314] = 5, + [41537] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2709), 1, + ACTIONS(2738), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [41330] = 5, + [41553] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2663), 1, + 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(2687), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - [41346] = 5, + [41585] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2711), 1, + ACTIONS(2740), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [41362] = 3, + [41601] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 2, + ACTIONS(2162), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2713), 2, + ACTIONS(2742), 2, anon_sym_COMMA, anon_sym_RPAREN, - [41374] = 4, + [41613] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2213), 1, + ACTIONS(2225), 1, anon_sym_SEMI, - ACTIONS(2715), 1, + ACTIONS(2744), 1, anon_sym_RBRACK, - ACTIONS(2133), 2, + ACTIONS(2162), 2, anon_sym_COMMA, anon_sym_PIPE, - [41388] = 5, + [41627] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2685), 1, + ACTIONS(2714), 1, sym_super, - ACTIONS(2718), 1, + ACTIONS(2747), 1, sym_identifier, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - [41404] = 5, + [41643] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2720), 1, + ACTIONS(2749), 1, sym_identifier, - STATE(700), 1, + STATE(710), 1, sym_type_arguments, - [41420] = 5, + [41659] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2722), 1, + ACTIONS(2751), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [41436] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2496), 1, - anon_sym_LT, - ACTIONS(2724), 1, - anon_sym_of, - ACTIONS(2726), 1, - anon_sym_EQ, - STATE(1466), 1, - sym_type_parameters, - [41452] = 5, + [41675] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2720), 1, + ACTIONS(2749), 1, sym_identifier, - STATE(703), 1, + STATE(711), 1, sym_type_arguments, - [41468] = 5, + [41691] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2728), 1, + 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(2730), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2732), 1, + ACTIONS(2761), 1, anon_sym_LPAREN, - STATE(856), 1, + STATE(854), 1, sym_delim_token_tree, - [41484] = 5, + [41723] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2726), 1, + ACTIONS(2755), 1, anon_sym_EQ, - ACTIONS(2734), 1, + ACTIONS(2763), 1, anon_sym_SEMI, - STATE(1465), 1, + STATE(1467), 1, sym_type_parameters, - [41500] = 5, + [41739] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2736), 1, + ACTIONS(2765), 1, anon_sym_COMMA, - ACTIONS(2738), 1, + ACTIONS(2767), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1155), 1, aux_sym_tuple_pattern_repeat1, - [41516] = 4, + [41755] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2740), 1, + ACTIONS(2769), 1, anon_sym_if, - STATE(70), 2, + STATE(71), 2, sym_block, sym_if_expression, - [41530] = 5, + [41769] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 1, + ACTIONS(2771), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2746), 1, + ACTIONS(2775), 1, anon_sym_LPAREN, - STATE(221), 1, + STATE(222), 1, sym_delim_token_tree, - [41546] = 4, + [41785] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2655), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - ACTIONS(2748), 1, + ACTIONS(2777), 1, anon_sym_COLON_COLON, - ACTIONS(2213), 2, + ACTIONS(2225), 2, anon_sym_SEMI, anon_sym_RBRACK, - [41560] = 5, + [41799] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2750), 1, + ACTIONS(2779), 1, sym_identifier, - ACTIONS(2752), 1, + ACTIONS(2781), 1, sym_super, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - [41576] = 5, + [41815] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 1, + ACTIONS(2771), 1, anon_sym_LBRACE, - ACTIONS(2744), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(2746), 1, + ACTIONS(2775), 1, anon_sym_LPAREN, - STATE(222), 1, + STATE(223), 1, sym_delim_token_tree, - [41592] = 5, + [41831] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2436), 1, + ACTIONS(2453), 1, sym_super, - ACTIONS(2754), 1, + ACTIONS(2783), 1, sym_identifier, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - [41608] = 5, + [41847] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2728), 1, + ACTIONS(2757), 1, anon_sym_LBRACE, - ACTIONS(2730), 1, + ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2732), 1, + ACTIONS(2761), 1, anon_sym_LPAREN, - STATE(852), 1, + STATE(857), 1, sym_delim_token_tree, - [41624] = 5, + [41863] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2756), 1, + ACTIONS(2785), 1, anon_sym_LT2, - ACTIONS(2758), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2789), 1, sym_super, - STATE(644), 1, + STATE(645), 1, sym_type_arguments, - [41640] = 5, + [41879] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2756), 1, + ACTIONS(2785), 1, anon_sym_LT2, - ACTIONS(2758), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2789), 1, sym_super, - STATE(645), 1, + STATE(646), 1, sym_type_arguments, - [41656] = 5, + [41895] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2762), 1, + ACTIONS(2791), 1, anon_sym_SEMI, - ACTIONS(2764), 1, + ACTIONS(2793), 1, anon_sym_COLON, - ACTIONS(2766), 1, + ACTIONS(2795), 1, anon_sym_EQ, - [41672] = 3, + [41911] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2768), 1, - anon_sym_COLON_COLON, - ACTIONS(2133), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [41684] = 5, + 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(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2671), 1, + ACTIONS(2696), 1, anon_sym_LBRACE, STATE(294), 1, sym_enum_variant_list, - STATE(1438), 1, + STATE(1440), 1, sym_type_parameters, - [41700] = 5, + [41943] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, - anon_sym_LT2, - ACTIONS(2436), 1, - sym_super, - ACTIONS(2718), 1, - sym_identifier, - STATE(857), 1, - sym_type_arguments, - [41716] = 5, + 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(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2687), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - [41732] = 5, + [41971] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2221), 1, + ACTIONS(2260), 1, anon_sym_COLON_COLON, - ACTIONS(2770), 1, + ACTIONS(2799), 1, anon_sym_COMMA, - ACTIONS(2772), 1, + ACTIONS(2801), 1, anon_sym_GT, - STATE(1260), 1, + STATE(1262), 1, aux_sym_type_parameters_repeat1, - [41748] = 4, + [41987] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2774), 1, + ACTIONS(2803), 1, anon_sym_if, - STATE(70), 2, + STATE(71), 2, sym_block, sym_if_expression, - [41762] = 5, + [42001] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2669), 1, + ACTIONS(2694), 1, anon_sym_LBRACE, - STATE(536), 1, + STATE(539), 1, sym_enum_variant_list, - STATE(1395), 1, + STATE(1397), 1, sym_type_parameters, - [41778] = 5, + [42017] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2695), 1, + ACTIONS(2724), 1, anon_sym_COLON_COLON, - ACTIONS(2770), 1, + ACTIONS(2799), 1, anon_sym_COMMA, - ACTIONS(2772), 1, + ACTIONS(2801), 1, anon_sym_GT, - STATE(1260), 1, + STATE(1262), 1, aux_sym_type_parameters_repeat1, - [41794] = 5, + [42033] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2687), 1, + ACTIONS(2716), 1, sym_identifier, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - [41810] = 5, + [42049] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2678), 1, anon_sym_EQ, - ACTIONS(2776), 1, + ACTIONS(2805), 1, anon_sym_SEMI, - STATE(1401), 1, + STATE(1403), 1, sym_type_parameters, - [41826] = 4, + [42065] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(784), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(2778), 1, + ACTIONS(2807), 1, anon_sym_if, - STATE(251), 2, + STATE(252), 2, sym_block, sym_if_expression, - [41840] = 5, + [42079] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2780), 1, + ACTIONS(2809), 1, anon_sym_LBRACE, - ACTIONS(2782), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2784), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - STATE(1165), 1, + STATE(1167), 1, sym_delim_token_tree, - [41856] = 5, + [42095] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2780), 1, + ACTIONS(2809), 1, anon_sym_LBRACE, - ACTIONS(2782), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2784), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - STATE(1169), 1, + STATE(1171), 1, sym_delim_token_tree, - [41872] = 5, + [42111] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2786), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(2788), 1, + ACTIONS(2817), 1, sym_super, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - [41888] = 5, + [42127] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2790), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2821), 1, sym_super, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - [41904] = 5, + [42143] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2790), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2821), 1, sym_super, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - [41920] = 4, + [42159] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - ACTIONS(2685), 2, + ACTIONS(2714), 2, sym_identifier, sym_super, - [41934] = 5, + [42173] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2685), 1, + ACTIONS(2714), 1, sym_super, - ACTIONS(2786), 1, + ACTIONS(2815), 1, sym_identifier, - STATE(857), 1, + STATE(859), 1, sym_type_arguments, - [41950] = 4, + [42189] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - ACTIONS(2663), 2, + ACTIONS(2702), 2, sym_identifier, sym_super, - [41964] = 5, + [42203] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2794), 1, + ACTIONS(2823), 1, anon_sym_LPAREN, - STATE(990), 1, + STATE(991), 1, sym_parameters, - STATE(1435), 1, + STATE(1437), 1, sym_type_parameters, - [41980] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2236), 1, - anon_sym_SEMI, - ACTIONS(2796), 1, - anon_sym_RBRACK, - ACTIONS(2324), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [41994] = 4, + [42219] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - ACTIONS(2663), 2, + ACTIONS(2702), 2, sym_identifier, sym_super, - [42008] = 5, + [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(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2790), 1, + ACTIONS(2819), 1, sym_identifier, - STATE(853), 1, + STATE(856), 1, sym_type_arguments, - [42024] = 5, + [42263] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2790), 1, + ACTIONS(2819), 1, sym_identifier, - STATE(848), 1, + STATE(850), 1, sym_type_arguments, - [42040] = 5, + [42279] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2799), 1, + ACTIONS(2828), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(2830), 1, anon_sym_RPAREN, - STATE(1177), 1, + STATE(1176), 1, aux_sym_tuple_pattern_repeat1, - [42056] = 5, + [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(2544), 1, + ACTIONS(2529), 1, sym_identifier, - ACTIONS(2546), 1, + ACTIONS(2531), 1, sym_mutable_specifier, - ACTIONS(2803), 1, + ACTIONS(2834), 1, anon_sym_RBRACE, - STATE(1397), 1, + STATE(1399), 1, sym_field_pattern, - [42072] = 5, + [42327] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2685), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2805), 1, + ACTIONS(2836), 1, sym_identifier, - STATE(857), 1, + STATE(856), 1, sym_type_arguments, - [42088] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2626), 1, - anon_sym_PIPE, - ACTIONS(2807), 1, - anon_sym_SEMI, - ACTIONS(2809), 1, - anon_sym_COLON, - ACTIONS(2811), 1, - anon_sym_EQ, - [42104] = 5, + [42343] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2813), 1, + ACTIONS(2836), 1, sym_identifier, - STATE(853), 1, + STATE(850), 1, sym_type_arguments, - [42120] = 5, + [42359] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2663), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2813), 1, + ACTIONS(2838), 1, sym_identifier, - STATE(848), 1, + STATE(419), 1, sym_type_arguments, - [42136] = 5, + [42375] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(2815), 1, + ACTIONS(2840), 1, anon_sym_COMMA, - ACTIONS(2817), 1, + ACTIONS(2842), 1, anon_sym_RPAREN, - STATE(1181), 1, + STATE(1180), 1, aux_sym_tuple_pattern_repeat1, - [42152] = 5, + [42391] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2432), 1, - sym_super, - ACTIONS(2819), 1, - sym_identifier, - STATE(431), 1, - sym_type_arguments, - [42168] = 5, + 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(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2819), 1, + ACTIONS(2838), 1, sym_identifier, - STATE(435), 1, + STATE(436), 1, sym_type_arguments, - [42184] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2544), 1, - sym_identifier, - ACTIONS(2546), 1, - sym_mutable_specifier, - ACTIONS(2821), 1, - anon_sym_RBRACE, - STATE(1397), 1, - sym_field_pattern, - [42200] = 5, + [42423] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2402), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2406), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - ACTIONS(2412), 1, + ACTIONS(2441), 1, anon_sym_LPAREN, STATE(76), 1, sym_delim_token_tree, - [42216] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2074), 1, - anon_sym_LBRACE, - STATE(1290), 1, - sym_use_list, - ACTIONS(2823), 2, - sym_identifier, - sym_super, - [42230] = 3, + [42439] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 2, + ACTIONS(2162), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2825), 2, + ACTIONS(2850), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42242] = 5, + [42451] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2402), 1, + ACTIONS(2431), 1, anon_sym_LBRACE, - ACTIONS(2406), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - ACTIONS(2412), 1, + ACTIONS(2441), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(82), 1, sym_delim_token_tree, - [42258] = 4, + [42467] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2215), 1, - anon_sym_COLON_COLON, - ACTIONS(2655), 1, - anon_sym_LPAREN, - ACTIONS(2213), 2, + ACTIONS(2162), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2225), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42272] = 4, + [42479] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 1, + 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(2827), 1, + ACTIONS(2856), 1, anon_sym_COLON_COLON, - ACTIONS(2561), 2, + ACTIONS(2636), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42286] = 3, + [42523] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2213), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42298] = 2, + 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(2394), 3, + ACTIONS(2423), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42307] = 4, + [42548] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2829), 1, + ACTIONS(2860), 1, anon_sym_SEMI, - STATE(1496), 1, + STATE(1495), 1, sym_type_parameters, - [42320] = 3, + [42561] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 2, - sym_super, - sym_crate, - [42331] = 2, + 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(1196), 3, + ACTIONS(1216), 1, anon_sym_POUND, + ACTIONS(1218), 2, sym_numeric_literal, sym_identifier, - [42340] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2821), 1, - anon_sym_RBRACE, - ACTIONS(2835), 1, - anon_sym_COMMA, - STATE(1245), 1, - aux_sym_struct_pattern_repeat1, - [42353] = 3, + [42596] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 1, + ACTIONS(2162), 1, anon_sym_PIPE, - ACTIONS(2715), 2, + ACTIONS(2744), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42364] = 2, + [42607] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2837), 3, + ACTIONS(2858), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2866), 1, anon_sym_COMMA, - [42373] = 2, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [42620] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2839), 3, + ACTIONS(2868), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [42382] = 4, + [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(2841), 1, + ACTIONS(2874), 1, anon_sym_RBRACE, - ACTIONS(2843), 1, + ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1149), 1, + STATE(1152), 1, aux_sym_use_list_repeat1, - [42395] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2846), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_type_arguments, - [42408] = 4, + [42653] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2848), 1, + ACTIONS(2879), 1, anon_sym_COMMA, - ACTIONS(2850), 1, + ACTIONS(2881), 1, anon_sym_GT, - STATE(1172), 1, + STATE(1174), 1, aux_sym_type_arguments_repeat1, - [42421] = 4, + [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(1459), 1, + ACTIONS(1482), 1, anon_sym_RPAREN, - ACTIONS(2852), 1, + ACTIONS(2885), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - [42434] = 3, + [42688] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2324), 1, + ACTIONS(2371), 1, anon_sym_PIPE, - ACTIONS(2796), 2, + ACTIONS(2825), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42445] = 4, + [42699] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2159), 1, - anon_sym_fn, - ACTIONS(2854), 1, - anon_sym_type, - STATE(1533), 1, - sym_function, - [42458] = 4, + 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(1431), 1, + ACTIONS(1468), 1, anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(2889), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - [42471] = 4, + [42725] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2858), 1, + ACTIONS(2891), 1, anon_sym_RBRACE, - ACTIONS(2860), 1, + ACTIONS(2893), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1159), 1, aux_sym_field_initializer_list_repeat1, - [42484] = 3, + [42738] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2695), 1, - anon_sym_COLON_COLON, - ACTIONS(2863), 2, - anon_sym_COMMA, - anon_sym_GT, - [42495] = 4, + 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(1521), 1, + ACTIONS(1532), 1, anon_sym_LBRACE, - ACTIONS(2865), 1, + ACTIONS(2898), 1, anon_sym_COLON_COLON, - STATE(445), 1, + STATE(450), 1, sym_field_initializer_list, - [42508] = 3, + [42764] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2221), 1, + ACTIONS(2260), 1, anon_sym_COLON_COLON, - ACTIONS(2863), 2, + ACTIONS(2900), 2, anon_sym_COMMA, anon_sym_GT, - [42519] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1932), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(1160), 1, - aux_sym_arguments_repeat1, - [42532] = 2, + [42775] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(470), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42541] = 4, + [42784] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2530), 1, + ACTIONS(2591), 1, anon_sym_COMMA, - ACTIONS(2532), 1, + ACTIONS(2593), 1, anon_sym_RPAREN, - STATE(1308), 1, + STATE(1309), 1, aux_sym_parameters_repeat1, - [42554] = 4, + [42797] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(583), 1, + ACTIONS(1959), 1, anon_sym_RPAREN, - ACTIONS(2870), 1, + ACTIONS(2902), 1, anon_sym_COMMA, - STATE(1160), 1, + STATE(1165), 1, aux_sym_arguments_repeat1, - [42567] = 4, + [42810] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - anon_sym_SEMI, - STATE(316), 1, - sym_declaration_list, - [42580] = 2, + 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(537), 3, + ACTIONS(553), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42589] = 3, + [42832] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2874), 1, + ACTIONS(2907), 1, anon_sym_in, - ACTIONS(2876), 2, + ACTIONS(2909), 2, sym_super, sym_crate, - [42600] = 2, + [42843] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2392), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42609] = 2, + 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(485), 3, + ACTIONS(494), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42618] = 2, + [42865] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(517), 3, + ACTIONS(529), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42627] = 2, + [42874] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2370), 3, + ACTIONS(2427), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42636] = 2, + [42883] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2318), 3, + ACTIONS(2421), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42645] = 4, + [42892] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1489), 1, + ACTIONS(1516), 1, anon_sym_GT, - ACTIONS(2878), 1, + ACTIONS(2913), 1, anon_sym_COMMA, - STATE(1271), 1, + STATE(1273), 1, aux_sym_type_arguments_repeat1, - [42658] = 4, + [42905] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2880), 1, - anon_sym_RBRACE, - ACTIONS(2882), 1, - anon_sym_COMMA, - STATE(1187), 1, - aux_sym_struct_pattern_repeat1, - [42671] = 4, + ACTIONS(2419), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [42914] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, - anon_sym_LT2, - ACTIONS(2398), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_type_arguments, - [42684] = 2, + 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(2358), 3, + ACTIONS(2403), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42693] = 2, + [42936] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2348), 3, + ACTIONS(2395), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42702] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1443), 1, - anon_sym_RPAREN, - ACTIONS(2884), 1, - anon_sym_COMMA, - STATE(1044), 1, - aux_sym_tuple_pattern_repeat1, - [42715] = 4, + [42945] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2159), 1, + ACTIONS(2196), 1, anon_sym_fn, - ACTIONS(2886), 1, + ACTIONS(2917), 1, anon_sym_type, - STATE(1579), 1, + STATE(1576), 1, sym_function, - [42728] = 4, + [42958] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2888), 1, + 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(2890), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(1289), 1, + STATE(1291), 1, aux_sym_enum_variant_list_repeat2, - [42741] = 3, + [42984] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2894), 1, + ACTIONS(2927), 1, anon_sym_COLON, - ACTIONS(2892), 2, + ACTIONS(2925), 2, anon_sym_RBRACE, anon_sym_COMMA, - [42752] = 4, + [42995] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1455), 1, - anon_sym_RPAREN, - ACTIONS(2896), 1, + ACTIONS(2834), 1, + anon_sym_RBRACE, + ACTIONS(2929), 1, anon_sym_COMMA, - STATE(1044), 1, - aux_sym_tuple_pattern_repeat1, - [42765] = 3, + STATE(1247), 1, + aux_sym_struct_pattern_repeat1, + [43008] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2695), 1, - anon_sym_COLON_COLON, - ACTIONS(2898), 2, - anon_sym_COMMA, - anon_sym_GT, - [42776] = 4, + ACTIONS(2409), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43017] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1467), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(2900), 1, + ACTIONS(2931), 1, anon_sym_SEMI, - STATE(303), 1, + STATE(304), 1, sym_block, - [42789] = 2, + [43030] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(466), 3, + ACTIONS(478), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42798] = 2, + [43039] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(474), 3, + ACTIONS(486), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42807] = 4, + [43048] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2902), 1, + ACTIONS(2933), 1, anon_sym_RBRACE, - ACTIONS(2904), 1, + ACTIONS(2935), 1, anon_sym_COMMA, - STATE(1282), 1, + STATE(1284), 1, aux_sym_field_declaration_list_repeat1, - [42820] = 4, + [43061] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2803), 1, + ACTIONS(2939), 1, + anon_sym_COLON, + ACTIONS(2937), 2, anon_sym_RBRACE, - ACTIONS(2906), 1, anon_sym_COMMA, - STATE(1245), 1, - aux_sym_struct_pattern_repeat1, - [42833] = 2, + [43072] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2362), 3, + ACTIONS(2409), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42842] = 3, + [43081] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 1, + ACTIONS(1216), 1, anon_sym_POUND, - ACTIONS(1198), 2, + ACTIONS(1218), 2, anon_sym_pub, sym_identifier, - [42853] = 4, + [43092] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(673), 1, + ACTIONS(688), 1, anon_sym_RBRACK, - ACTIONS(1824), 1, + ACTIONS(1883), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [42866] = 4, + [43105] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1972), 1, + ACTIONS(2001), 1, anon_sym_RBRACK, - ACTIONS(2908), 1, + ACTIONS(2941), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [42879] = 3, + [43118] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2913), 1, - anon_sym_COLON, - ACTIONS(2911), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [42890] = 2, + ACTIONS(2401), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43127] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2399), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42899] = 4, + [43136] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2915), 1, + ACTIONS(2944), 1, anon_sym_RBRACE, - ACTIONS(2917), 1, + ACTIONS(2946), 1, anon_sym_COMMA, - STATE(1145), 1, + STATE(1149), 1, aux_sym_struct_pattern_repeat1, - [42912] = 2, + [43149] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2336), 3, + ACTIONS(2389), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42921] = 4, + [43158] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2159), 1, + ACTIONS(2196), 1, anon_sym_fn, - ACTIONS(2919), 1, + ACTIONS(2948), 1, anon_sym_type, - STATE(1551), 1, + STATE(1553), 1, sym_function, - [42934] = 4, + [43171] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(2921), 1, + ACTIONS(2950), 1, anon_sym_SEMI, - STATE(330), 1, + STATE(331), 1, sym_declaration_list, - [42947] = 4, + [43184] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2501), 1, + ACTIONS(2540), 1, anon_sym_RPAREN, - ACTIONS(2923), 1, + ACTIONS(2952), 1, anon_sym_COMMA, - STATE(1198), 1, + STATE(1200), 1, aux_sym_function_repeat1, - [42960] = 2, + [43197] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2926), 3, + ACTIONS(2955), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [42969] = 4, + [43206] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2096), 1, + ACTIONS(2125), 1, anon_sym_RBRACE, - ACTIONS(2928), 1, + ACTIONS(2957), 1, anon_sym_COMMA, - STATE(1149), 1, + STATE(1152), 1, aux_sym_use_list_repeat1, - [42982] = 4, + [43219] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2374), 1, - anon_sym_RBRACE, - ACTIONS(2930), 1, + ACTIONS(2742), 1, + anon_sym_RPAREN, + ACTIONS(2959), 1, anon_sym_COMMA, - STATE(1272), 1, - aux_sym_field_declaration_list_repeat1, - [42995] = 2, + STATE(1203), 1, + aux_sym_parameters_repeat1, + [43232] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2932), 3, + ACTIONS(2962), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43004] = 2, + [43241] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 3, + ACTIONS(2964), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43013] = 4, + [43250] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(689), 1, + ACTIONS(706), 1, anon_sym_RBRACK, - ACTIONS(1798), 1, + ACTIONS(1829), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [43026] = 4, + [43263] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(374), 1, + ACTIONS(384), 1, anon_sym_LBRACE, - ACTIONS(2936), 1, + ACTIONS(2966), 1, anon_sym_SEMI, - STATE(532), 1, + STATE(533), 1, sym_block, - [43039] = 4, + [43276] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1771), 1, + ACTIONS(1798), 1, anon_sym_LBRACE, - ACTIONS(2938), 1, + ACTIONS(2968), 1, anon_sym_COLON_COLON, - STATE(781), 1, + STATE(783), 1, sym_field_initializer_list, - [43052] = 4, + [43289] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(2940), 1, + ACTIONS(2970), 1, anon_sym_SEMI, - STATE(283), 1, + STATE(285), 1, sym_declaration_list, - [43065] = 4, + [43302] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1493), 1, + ACTIONS(1512), 1, anon_sym_GT, - ACTIONS(2942), 1, + ACTIONS(2972), 1, anon_sym_COMMA, - STATE(1271), 1, + STATE(1273), 1, aux_sym_type_arguments_repeat1, - [43078] = 4, + [43315] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2566), 1, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2944), 1, + ACTIONS(2974), 1, anon_sym_SEMI, - STATE(301), 1, + STATE(302), 1, sym_field_declaration_list, - [43091] = 2, + [43328] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(489), 3, + ACTIONS(474), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43100] = 2, + [43337] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2390), 3, + ACTIONS(2417), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43109] = 4, + [43346] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2946), 1, + ACTIONS(2976), 1, anon_sym_COMMA, - ACTIONS(2948), 1, + ACTIONS(2978), 1, anon_sym_GT, - STATE(1208), 1, + STATE(1210), 1, aux_sym_type_arguments_repeat1, - [43122] = 2, + [43359] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2950), 3, + ACTIONS(2980), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43131] = 2, + [43368] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2952), 3, + ACTIONS(2982), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43140] = 4, + [43377] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(2954), 1, + ACTIONS(2984), 1, anon_sym_SEMI, STATE(491), 1, sym_declaration_list, - [43153] = 2, + [43390] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2342), 3, + ACTIONS(2387), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43162] = 2, + [43399] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2956), 3, + ACTIONS(2986), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43171] = 2, + [43408] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2958), 3, + ACTIONS(2988), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43180] = 4, + [43417] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2960), 1, + ACTIONS(2990), 1, anon_sym_PIPE, - ACTIONS(2962), 1, + ACTIONS(2992), 1, anon_sym_EQ_GT, - ACTIONS(2964), 1, + ACTIONS(2994), 1, anon_sym_if, - [43193] = 4, + [43430] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2770), 1, + ACTIONS(2799), 1, anon_sym_COMMA, - ACTIONS(2772), 1, + ACTIONS(2801), 1, anon_sym_GT, - STATE(1260), 1, + STATE(1262), 1, aux_sym_type_parameters_repeat1, - [43206] = 2, + [43443] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2330), 3, + ACTIONS(2381), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43215] = 2, + [43452] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2362), 3, + ACTIONS(2162), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43224] = 4, + [43461] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(2966), 1, + ACTIONS(2996), 1, anon_sym_SEMI, - STATE(305), 1, + STATE(301), 1, sym_declaration_list, - [43237] = 4, + [43474] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1858), 1, + ACTIONS(1833), 1, anon_sym_RPAREN, - ACTIONS(2968), 1, + ACTIONS(2998), 1, anon_sym_COMMA, - STATE(1198), 1, + STATE(1200), 1, aux_sym_function_repeat1, - [43250] = 2, + [43487] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2133), 3, + ACTIONS(2657), 1, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43259] = 4, + ACTIONS(3000), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43498] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - ACTIONS(2970), 1, + ACTIONS(3002), 1, anon_sym_COLON_COLON, - STATE(864), 1, + STATE(861), 1, sym_type_arguments, - [43272] = 4, + [43511] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2396), 1, + ACTIONS(2276), 1, anon_sym_RBRACE, - ACTIONS(2972), 1, + ACTIONS(3004), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1159), 1, aux_sym_field_initializer_list_repeat1, - [43285] = 3, + [43524] = 4, ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2626), 1, - anon_sym_PIPE, - ACTIONS(2974), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [43296] = 3, + 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(2978), 1, + ACTIONS(3008), 1, anon_sym_COLON, - ACTIONS(2976), 2, + ACTIONS(3006), 2, anon_sym_RBRACE, anon_sym_COMMA, - [43307] = 2, + [43548] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2980), 3, + ACTIONS(3010), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43316] = 4, + [43557] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(581), 1, + ACTIONS(593), 1, anon_sym_RPAREN, - ACTIONS(1856), 1, + ACTIONS(1885), 1, anon_sym_COMMA, - STATE(1160), 1, + STATE(1165), 1, aux_sym_arguments_repeat1, - [43329] = 4, + [43570] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(581), 1, + ACTIONS(593), 1, anon_sym_RPAREN, - ACTIONS(1856), 1, + ACTIONS(1885), 1, anon_sym_COMMA, - STATE(1163), 1, + STATE(1166), 1, aux_sym_arguments_repeat1, - [43342] = 4, + [43583] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(2982), 1, + ACTIONS(3012), 1, anon_sym_SEMI, - STATE(270), 1, + STATE(271), 1, sym_declaration_list, - [43355] = 2, + [43596] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2322), 3, + ACTIONS(2377), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43364] = 4, + [43605] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2566), 1, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2984), 1, + ACTIONS(3014), 1, anon_sym_SEMI, - STATE(273), 1, + STATE(274), 1, sym_field_declaration_list, - [43377] = 3, + [43618] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2988), 1, - anon_sym_COLON, - ACTIONS(2986), 2, + ACTIONS(3016), 1, anon_sym_RBRACE, + ACTIONS(3018), 1, anon_sym_COMMA, - [43388] = 4, + STATE(1183), 1, + aux_sym_struct_pattern_repeat1, + [43631] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, - sym_identifier, - ACTIONS(2546), 1, - sym_mutable_specifier, - STATE(1397), 1, - sym_field_pattern, - [43401] = 4, + 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(2990), 1, + ACTIONS(3022), 1, anon_sym_COMMA, - ACTIONS(2992), 1, + ACTIONS(3024), 1, anon_sym_RPAREN, - STATE(1224), 1, + STATE(1226), 1, aux_sym_function_repeat1, - [43414] = 2, + [43657] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2320), 3, + ACTIONS(2375), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43423] = 4, + [43666] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2159), 1, - anon_sym_fn, - ACTIONS(2994), 1, - anon_sym_type, - STATE(1472), 1, - sym_function, - [43436] = 2, + 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(2324), 3, + ACTIONS(2371), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43445] = 4, + [43688] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(374), 1, + ACTIONS(384), 1, anon_sym_LBRACE, - ACTIONS(2996), 1, + ACTIONS(3028), 1, anon_sym_SEMI, - STATE(566), 1, + STATE(489), 1, sym_block, - [43458] = 2, + [43701] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2328), 3, + ACTIONS(2391), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43467] = 2, + [43710] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2388), 3, + ACTIONS(2359), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43476] = 4, + [43719] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2998), 1, + ACTIONS(3030), 1, anon_sym_RBRACE, - ACTIONS(3000), 1, + ACTIONS(3032), 1, anon_sym_COMMA, - STATE(1245), 1, + STATE(1247), 1, aux_sym_struct_pattern_repeat1, - [43489] = 4, + [43732] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1521), 1, + ACTIONS(1492), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - anon_sym_COLON_COLON, - STATE(445), 1, - sym_field_initializer_list, - [43502] = 4, + ACTIONS(3035), 1, + anon_sym_SEMI, + STATE(321), 1, + sym_block, + [43745] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3005), 1, + ACTIONS(3037), 1, anon_sym_SEMI, - STATE(498), 1, + STATE(530), 1, sym_declaration_list, - [43515] = 2, + [43758] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2380), 3, + ACTIONS(2361), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43524] = 4, + [43767] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3007), 1, + ACTIONS(3039), 1, anon_sym_SEMI, - STATE(506), 1, + STATE(508), 1, sym_declaration_list, - [43537] = 2, + [43780] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2376), 3, + ACTIONS(2365), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43546] = 4, + [43789] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(679), 1, + ACTIONS(694), 1, anon_sym_RBRACK, - ACTIONS(1802), 1, + ACTIONS(1808), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [43559] = 2, + [43802] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2372), 3, + ACTIONS(2425), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43568] = 4, + [43811] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(3009), 1, + ACTIONS(3041), 1, anon_sym_SEMI, - STATE(278), 1, + STATE(276), 1, sym_declaration_list, - [43581] = 3, + [43824] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2221), 1, + ACTIONS(2260), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 2, + ACTIONS(3043), 2, anon_sym_COMMA, anon_sym_GT, - [43592] = 4, + [43835] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2520), 1, + ACTIONS(2610), 1, anon_sym_LBRACE, - ACTIONS(3013), 1, + ACTIONS(3045), 1, anon_sym_SEMI, - STATE(514), 1, + STATE(538), 1, sym_field_declaration_list, - [43605] = 3, + [43848] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2221), 1, + ACTIONS(2260), 1, anon_sym_COLON_COLON, - ACTIONS(2898), 2, + ACTIONS(3047), 2, anon_sym_COMMA, anon_sym_GT, - [43616] = 3, + [43859] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(3015), 2, + ACTIONS(3049), 2, anon_sym_RBRACE, anon_sym_COMMA, - [43627] = 4, + [43870] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1467), 1, - anon_sym_LBRACE, - ACTIONS(3017), 1, - anon_sym_SEMI, - STATE(322), 1, - sym_block, - [43640] = 4, + 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(1846), 1, + ACTIONS(1875), 1, anon_sym_GT, - ACTIONS(3019), 1, + ACTIONS(3051), 1, anon_sym_COMMA, - STATE(1274), 1, + STATE(1276), 1, aux_sym_type_parameters_repeat1, - [43653] = 4, + [43894] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1844), 1, + ACTIONS(1873), 1, anon_sym_GT, - ACTIONS(2693), 1, + ACTIONS(2722), 1, anon_sym_COMMA, - STATE(1274), 1, + STATE(1276), 1, aux_sym_type_parameters_repeat1, - [43666] = 4, + [43907] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1844), 1, + ACTIONS(1873), 1, anon_sym_GT, - ACTIONS(2693), 1, + ACTIONS(2722), 1, anon_sym_COMMA, - STATE(1288), 1, + STATE(1290), 1, aux_sym_type_parameters_repeat1, - [43679] = 4, + [43920] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(3021), 1, + ACTIONS(3053), 1, anon_sym_SEMI, - STATE(257), 1, + STATE(258), 1, sym_declaration_list, - [43692] = 2, + [43933] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2332), 3, + ACTIONS(2357), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43701] = 3, + [43942] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2695), 1, + ACTIONS(2724), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 2, + ACTIONS(3043), 2, anon_sym_COMMA, anon_sym_GT, - [43712] = 2, + [43953] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2334), 3, + ACTIONS(2363), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43721] = 4, + [43962] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(681), 1, + ACTIONS(696), 1, anon_sym_RBRACK, - ACTIONS(3023), 1, + ACTIONS(3055), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [43734] = 2, + [43975] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2338), 3, + ACTIONS(2367), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43743] = 4, + [43984] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2276), 1, + ACTIONS(2351), 1, anon_sym_RBRACE, - ACTIONS(3025), 1, + ACTIONS(3057), 1, anon_sym_COMMA, - STATE(1322), 1, + STATE(1323), 1, aux_sym_enum_variant_list_repeat2, - [43756] = 2, + [43997] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2344), 3, + ACTIONS(2373), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43765] = 2, + [44006] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2354), 3, + ACTIONS(2383), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43774] = 4, + [44015] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3027), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - ACTIONS(3030), 1, + ACTIONS(3062), 1, anon_sym_GT, - STATE(1271), 1, + STATE(1273), 1, aux_sym_type_arguments_repeat1, - [43787] = 4, + [44028] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2352), 1, + ACTIONS(2379), 1, anon_sym_RBRACE, - ACTIONS(3032), 1, + ACTIONS(3064), 1, anon_sym_COMMA, - STATE(1307), 1, + STATE(1308), 1, aux_sym_field_declaration_list_repeat1, - [43800] = 2, + [44041] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2385), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43809] = 4, + [44050] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3011), 1, + ACTIONS(3043), 1, anon_sym_GT, - ACTIONS(3034), 1, + ACTIONS(3066), 1, anon_sym_COMMA, - STATE(1274), 1, + STATE(1276), 1, aux_sym_type_parameters_repeat1, - [43822] = 4, + [44063] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(3037), 1, + ACTIONS(3069), 1, anon_sym_SEMI, - STATE(1570), 1, + STATE(1573), 1, sym_type_parameters, - [43835] = 4, + [44076] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3071), 1, anon_sym_SEMI, - STATE(521), 1, + STATE(523), 1, sym_declaration_list, - [43848] = 4, + [44089] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(585), 1, + ACTIONS(597), 1, anon_sym_RPAREN, - ACTIONS(3041), 1, + ACTIONS(3073), 1, anon_sym_COMMA, - STATE(1160), 1, + STATE(1165), 1, aux_sym_arguments_repeat1, - [43861] = 2, + [44102] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3043), 3, + ACTIONS(3075), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43870] = 4, + [44111] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3045), 1, + ACTIONS(3077), 1, anon_sym_RBRACE, - ACTIONS(3047), 1, + ACTIONS(3079), 1, anon_sym_COMMA, - STATE(1200), 1, + STATE(1202), 1, aux_sym_use_list_repeat1, - [43883] = 4, + [44124] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2673), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(3049), 1, + ACTIONS(3081), 1, anon_sym_COMMA, - STATE(1245), 1, + STATE(1247), 1, aux_sym_struct_pattern_repeat1, - [43896] = 4, + [44137] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3051), 1, + ACTIONS(3083), 1, anon_sym_RBRACE, - ACTIONS(3053), 1, + ACTIONS(3085), 1, anon_sym_COMMA, - STATE(1323), 1, + STATE(1324), 1, aux_sym_field_initializer_list_repeat1, - [43909] = 4, + [44150] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2326), 1, + ACTIONS(2393), 1, anon_sym_RBRACE, - ACTIONS(3055), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(1307), 1, + STATE(1308), 1, aux_sym_field_declaration_list_repeat1, - [43922] = 4, + [44163] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1429), 1, + ACTIONS(1474), 1, anon_sym_RPAREN, - ACTIONS(3057), 1, + ACTIONS(3089), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - [43935] = 4, + [44176] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2326), 1, + ACTIONS(2393), 1, anon_sym_RBRACE, - ACTIONS(3055), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(1317), 1, + STATE(1318), 1, aux_sym_field_declaration_list_repeat1, - [43948] = 4, + [44189] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1832), 1, + ACTIONS(1843), 1, anon_sym_COMMA, - ACTIONS(1834), 1, + ACTIONS(1845), 1, anon_sym_RPAREN, - STATE(1324), 1, + STATE(1325), 1, aux_sym_arguments_repeat1, - [43961] = 4, + [44202] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1850), 1, + ACTIONS(1857), 1, anon_sym_GT, - ACTIONS(3059), 1, + ACTIONS(3091), 1, anon_sym_COMMA, - STATE(1274), 1, + STATE(1276), 1, aux_sym_type_parameters_repeat1, - [43974] = 4, + [44215] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3061), 1, + ACTIONS(3093), 1, anon_sym_SEMI, - STATE(564), 1, + STATE(565), 1, sym_declaration_list, - [43987] = 4, + [44228] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1852), 1, + ACTIONS(1865), 1, anon_sym_GT, - ACTIONS(3063), 1, + ACTIONS(3095), 1, anon_sym_COMMA, - STATE(1274), 1, + STATE(1276), 1, aux_sym_type_parameters_repeat1, - [44000] = 4, + [44241] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2270), 1, + ACTIONS(2343), 1, anon_sym_RBRACE, - ACTIONS(3065), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - STATE(1322), 1, + STATE(1323), 1, aux_sym_enum_variant_list_repeat2, - [44013] = 2, + [44254] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3067), 3, + ACTIONS(3099), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [44022] = 4, + [44263] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1453), 1, + ACTIONS(1464), 1, anon_sym_RPAREN, - ACTIONS(3069), 1, + ACTIONS(3101), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - [44035] = 4, + [44276] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(3071), 1, + ACTIONS(3103), 1, anon_sym_SEMI, STATE(1601), 1, sym_type_parameters, - [44048] = 3, + [44289] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3075), 1, + ACTIONS(3107), 1, anon_sym_COLON, - ACTIONS(3073), 2, + ACTIONS(3105), 2, anon_sym_RBRACE, anon_sym_COMMA, - [44059] = 4, + [44300] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2665), 1, + ACTIONS(2690), 1, anon_sym_RBRACE, - ACTIONS(3077), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - STATE(1245), 1, + STATE(1247), 1, aux_sym_struct_pattern_repeat1, - [44072] = 4, + [44313] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3079), 1, + ACTIONS(3111), 1, anon_sym_SEMI, - STATE(501), 1, + STATE(504), 1, sym_declaration_list, - [44085] = 4, + [44326] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2270), 1, + ACTIONS(2343), 1, anon_sym_RBRACE, - ACTIONS(3065), 1, + ACTIONS(3097), 1, anon_sym_COMMA, - STATE(1325), 1, + STATE(1326), 1, aux_sym_enum_variant_list_repeat2, - [44098] = 4, + [44339] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1491), 1, + ACTIONS(1514), 1, anon_sym_GT, - ACTIONS(3081), 1, + ACTIONS(3113), 1, anon_sym_COMMA, - STATE(1271), 1, + STATE(1273), 1, aux_sym_type_arguments_repeat1, - [44111] = 4, + [44352] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(936), 1, + ACTIONS(956), 1, anon_sym_RPAREN, - ACTIONS(3083), 1, + ACTIONS(3115), 1, anon_sym_COMMA, - STATE(1302), 1, + STATE(1203), 1, aux_sym_parameters_repeat1, - [44124] = 4, + [44365] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 1, + ACTIONS(2341), 1, anon_sym_RBRACE, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1270), 1, aux_sym_enum_variant_list_repeat2, - [44137] = 4, + [44378] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 1, + ACTIONS(2341), 1, anon_sym_RBRACE, - ACTIONS(3085), 1, + ACTIONS(3117), 1, anon_sym_COMMA, - STATE(1322), 1, + STATE(1323), 1, aux_sym_enum_variant_list_repeat2, - [44150] = 4, + [44391] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2492), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_SEMI, - STATE(260), 1, + STATE(262), 1, sym_declaration_list, - [44163] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2713), 1, - anon_sym_RPAREN, - ACTIONS(3089), 1, - anon_sym_COMMA, - STATE(1302), 1, - aux_sym_parameters_repeat1, - [44176] = 4, + [44404] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(675), 1, + ACTIONS(690), 1, anon_sym_RBRACK, - ACTIONS(1836), 1, + ACTIONS(1841), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [44189] = 4, + [44417] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(2659), 1, + ACTIONS(2688), 1, anon_sym_EQ, - STATE(1568), 1, + STATE(1570), 1, sym_type_parameters, - [44202] = 4, + [44430] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3092), 1, + ACTIONS(3121), 1, anon_sym_RBRACE, - ACTIONS(3094), 1, + ACTIONS(3123), 1, anon_sym_COMMA, - STATE(1332), 1, + STATE(1333), 1, aux_sym_field_declaration_list_repeat1, - [44215] = 4, + [44443] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3096), 1, + ACTIONS(3125), 1, anon_sym_RBRACE, - ACTIONS(3098), 1, + ACTIONS(3127), 1, anon_sym_COMMA, - STATE(1300), 1, + STATE(1302), 1, aux_sym_enum_variant_list_repeat2, - [44228] = 4, + [44456] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3100), 1, + ACTIONS(3129), 1, anon_sym_RBRACE, - ACTIONS(3102), 1, + ACTIONS(3131), 1, anon_sym_COMMA, - STATE(1307), 1, + STATE(1308), 1, aux_sym_field_declaration_list_repeat1, - [44241] = 4, + [44469] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(932), 1, + ACTIONS(952), 1, anon_sym_RPAREN, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_COMMA, - STATE(1302), 1, + STATE(1203), 1, aux_sym_parameters_repeat1, - [44254] = 4, + [44482] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1435), 1, + ACTIONS(1484), 1, anon_sym_RBRACK, - ACTIONS(3105), 1, + ACTIONS(3134), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - [44267] = 4, + [44495] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1840), 1, + ACTIONS(1867), 1, anon_sym_COMMA, - ACTIONS(1842), 1, + ACTIONS(1869), 1, anon_sym_RPAREN, - STATE(1231), 1, + STATE(1233), 1, aux_sym_arguments_repeat1, - [44280] = 4, + [44508] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1445), 1, + ACTIONS(1472), 1, anon_sym_RPAREN, - ACTIONS(3107), 1, + ACTIONS(3136), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(1045), 1, aux_sym_tuple_pattern_repeat1, - [44293] = 4, + [44521] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3109), 1, + ACTIONS(3138), 1, anon_sym_COMMA, - ACTIONS(3111), 1, + ACTIONS(3140), 1, anon_sym_GT, - STATE(1297), 1, + STATE(1299), 1, aux_sym_type_arguments_repeat1, - [44306] = 4, + [44534] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3113), 1, + ACTIONS(3142), 1, anon_sym_RBRACE, - ACTIONS(3115), 1, + ACTIONS(3144), 1, anon_sym_COMMA, - STATE(1294), 1, + STATE(1296), 1, aux_sym_struct_pattern_repeat1, - [44319] = 4, + [44547] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(932), 1, + ACTIONS(952), 1, anon_sym_RPAREN, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_COMMA, - STATE(1298), 1, + STATE(1300), 1, aux_sym_parameters_repeat1, - [44332] = 4, + [44560] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, - anon_sym_LT, - ACTIONS(2647), 1, - anon_sym_EQ, - STATE(1620), 1, - sym_type_parameters, - [44345] = 4, + 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(3117), 1, + ACTIONS(3146), 1, anon_sym_RBRACE, - ACTIONS(3119), 1, + ACTIONS(3148), 1, anon_sym_COMMA, - STATE(1280), 1, + STATE(1282), 1, aux_sym_struct_pattern_repeat1, - [44358] = 4, + [44584] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2382), 1, + ACTIONS(2411), 1, anon_sym_RBRACE, - ACTIONS(3121), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - STATE(1307), 1, + STATE(1308), 1, aux_sym_field_declaration_list_repeat1, - [44371] = 4, + [44597] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3123), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - ACTIONS(3125), 1, + ACTIONS(3154), 1, anon_sym_COMMA, - STATE(1227), 1, + STATE(1229), 1, aux_sym_field_initializer_list_repeat1, - [44384] = 3, + [44610] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3129), 1, + ACTIONS(3158), 1, anon_sym_COLON, - ACTIONS(3127), 2, + ACTIONS(3156), 2, anon_sym_RBRACE, anon_sym_COMMA, - [44395] = 2, + [44621] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2360), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44404] = 2, + 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(2366), 3, + ACTIONS(2407), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44413] = 4, + [44643] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3131), 1, + ACTIONS(3160), 1, anon_sym_RBRACE, - ACTIONS(3133), 1, + ACTIONS(3162), 1, anon_sym_COMMA, - STATE(1322), 1, + STATE(1323), 1, aux_sym_enum_variant_list_repeat2, - [44426] = 4, + [44656] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2378), 1, + ACTIONS(2306), 1, anon_sym_RBRACE, - ACTIONS(3136), 1, + ACTIONS(3165), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1159), 1, aux_sym_field_initializer_list_repeat1, - [44439] = 4, + [44669] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(587), 1, + ACTIONS(599), 1, anon_sym_RPAREN, - ACTIONS(1822), 1, + ACTIONS(1839), 1, anon_sym_COMMA, - STATE(1160), 1, + STATE(1165), 1, aux_sym_arguments_repeat1, - [44452] = 4, + [44682] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2274), 1, + ACTIONS(2349), 1, anon_sym_RBRACE, - ACTIONS(3138), 1, + ACTIONS(3167), 1, anon_sym_COMMA, - STATE(1322), 1, + STATE(1323), 1, aux_sym_enum_variant_list_repeat2, - [44465] = 4, + [44695] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(587), 1, + ACTIONS(599), 1, anon_sym_RPAREN, - ACTIONS(1822), 1, + ACTIONS(1839), 1, anon_sym_COMMA, - STATE(1277), 1, + STATE(1279), 1, aux_sym_arguments_repeat1, - [44478] = 4, + [44708] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3140), 1, + ACTIONS(3169), 1, anon_sym_SEMI, - STATE(558), 1, + STATE(560), 1, sym_declaration_list, - [44491] = 4, + [44721] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2520), 1, + ACTIONS(2610), 1, anon_sym_LBRACE, - ACTIONS(3142), 1, + ACTIONS(3171), 1, anon_sym_SEMI, - STATE(556), 1, + STATE(558), 1, sym_field_declaration_list, - [44504] = 4, + [44734] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2496), 1, + ACTIONS(2549), 1, anon_sym_LT, - ACTIONS(3144), 1, + ACTIONS(3173), 1, anon_sym_SEMI, - STATE(1553), 1, + STATE(1555), 1, sym_type_parameters, - [44517] = 4, + [44747] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2545), 1, anon_sym_LBRACE, - ACTIONS(3146), 1, + ACTIONS(3175), 1, anon_sym_SEMI, - STATE(550), 1, + STATE(552), 1, sym_declaration_list, - [44530] = 4, + [44760] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(683), 1, + ACTIONS(704), 1, anon_sym_RBRACK, - ACTIONS(3148), 1, + ACTIONS(3177), 1, anon_sym_COMMA, - STATE(1191), 1, + STATE(1193), 1, aux_sym_array_expression_repeat1, - [44543] = 4, + [44773] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2374), 1, + ACTIONS(2405), 1, anon_sym_RBRACE, - ACTIONS(2930), 1, + ACTIONS(3179), 1, anon_sym_COMMA, - STATE(1307), 1, + STATE(1308), 1, aux_sym_field_declaration_list_repeat1, - [44556] = 3, + [44786] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3150), 1, + 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(3152), 1, + ACTIONS(3183), 1, anon_sym_RPAREN, - [44566] = 2, + [44809] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2663), 2, + ACTIONS(2702), 2, sym_identifier, sym_super, - [44574] = 3, + [44817] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3154), 1, - anon_sym_SEMI, - ACTIONS(3156), 1, - anon_sym_EQ, - [44584] = 3, + ACTIONS(3185), 1, + anon_sym_BANG, + ACTIONS(3187), 1, + anon_sym_LBRACK, + [44827] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 1, + ACTIONS(3183), 1, anon_sym_RPAREN, - ACTIONS(3158), 1, + ACTIONS(3189), 1, anon_sym_COLON_COLON, - [44594] = 3, + [44837] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_LBRACK, - [44604] = 3, + ACTIONS(3191), 1, + anon_sym_SEMI, + ACTIONS(3193), 1, + anon_sym_EQ, + [44847] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3164), 1, + ACTIONS(3195), 1, anon_sym_of, - ACTIONS(3166), 1, + ACTIONS(3197), 1, anon_sym_EQ, - [44614] = 3, + [44857] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(3168), 1, + ACTIONS(3199), 1, anon_sym_EQ, - [44624] = 2, + [44867] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3170), 2, + ACTIONS(3201), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44632] = 3, + [44875] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3172), 1, + ACTIONS(3203), 1, anon_sym_of, - ACTIONS(3174), 1, + ACTIONS(3205), 1, anon_sym_EQ, - [44642] = 3, + [44885] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3176), 1, + ACTIONS(3207), 1, anon_sym_BANG, - ACTIONS(3178), 1, + ACTIONS(3209), 1, anon_sym_LBRACK, - [44652] = 3, + [44895] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3180), 1, + ACTIONS(3211), 1, anon_sym_BANG, - ACTIONS(3182), 1, + ACTIONS(3213), 1, anon_sym_LBRACK, - [44662] = 2, + [44905] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3184), 2, + ACTIONS(3215), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44670] = 3, + [44913] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2669), 1, + ACTIONS(2694), 1, anon_sym_LBRACE, - STATE(554), 1, + STATE(556), 1, sym_enum_variant_list, - [44680] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3131), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [44688] = 2, + [44923] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3186), 2, + ACTIONS(3217), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44696] = 3, + [44931] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(3188), 1, + ACTIONS(3219), 1, anon_sym_COLON, - [44706] = 3, + [44941] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 1, + ACTIONS(3160), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44949] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2852), 1, sym_super, - ACTIONS(3190), 1, + ACTIONS(3221), 1, sym_identifier, - [44716] = 2, + [44959] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2863), 2, + ACTIONS(2900), 2, anon_sym_COMMA, anon_sym_GT, - [44724] = 2, + [44967] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3192), 2, + ACTIONS(3223), 2, sym_identifier, sym_super, - [44732] = 2, + [44975] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3194), 2, + ACTIONS(3225), 2, anon_sym_type, anon_sym_fn, - [44740] = 2, + [44983] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2713), 2, + ACTIONS(2742), 2, anon_sym_COMMA, anon_sym_RPAREN, - [44748] = 3, + [44991] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(82), 1, + STATE(70), 1, sym_block, - [44758] = 3, + [45001] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 1, + ACTIONS(3227), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45009] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3183), 1, anon_sym_RPAREN, - ACTIONS(3196), 1, + ACTIONS(3229), 1, anon_sym_COLON_COLON, - [44768] = 2, + [45019] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3100), 2, + ACTIONS(3129), 2, anon_sym_RBRACE, anon_sym_COMMA, - [44776] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3198), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44784] = 2, + [45027] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3200), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44792] = 3, + ACTIONS(2381), 1, + anon_sym_PIPE, + ACTIONS(3219), 1, + anon_sym_COLON, + [45037] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_LT2, - STATE(454), 1, + STATE(445), 1, sym_type_arguments, - [44802] = 3, + [45047] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2217), 1, - sym_identifier, - ACTIONS(3202), 1, - anon_sym_LPAREN, - [44812] = 3, + ACTIONS(3231), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45055] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3204), 1, + ACTIONS(3233), 1, anon_sym_SEMI, - ACTIONS(3206), 1, + ACTIONS(3235), 1, anon_sym_EQ, - [44822] = 3, + [45065] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(2538), 1, + ACTIONS(2589), 1, anon_sym_COLON_COLON, - [44832] = 2, + [45075] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(458), 2, - anon_sym_COMMA, - anon_sym_GT, - [44840] = 3, + ACTIONS(2229), 1, + sym_identifier, + ACTIONS(3237), 1, + anon_sym_LPAREN, + [45085] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2137), 1, + ACTIONS(2166), 1, anon_sym_BANG, - ACTIONS(3208), 1, + ACTIONS(3239), 1, anon_sym_COLON_COLON, - [44850] = 3, + [45095] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(3188), 1, - anon_sym_COLON, - [44860] = 2, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_RBRACK, + [45105] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3210), 2, + ACTIONS(3245), 2, anon_sym_RBRACE, anon_sym_COMMA, - [44868] = 3, + [45113] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3212), 1, + ACTIONS(3247), 1, anon_sym_SEMI, - ACTIONS(3214), 1, + ACTIONS(3249), 1, anon_sym_EQ, - [44878] = 2, + [45123] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3216), 2, + ACTIONS(3251), 2, anon_sym_COMMA, anon_sym_RPAREN, - [44886] = 3, + [45131] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1521), 1, + ACTIONS(1532), 1, anon_sym_LBRACE, - STATE(445), 1, + STATE(450), 1, sym_field_initializer_list, - [44896] = 3, + [45141] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3218), 1, - anon_sym_SEMI, - ACTIONS(3220), 1, - anon_sym_RBRACK, - [44906] = 3, + ACTIONS(482), 2, + anon_sym_COMMA, + anon_sym_GT, + [45149] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2671), 1, + ACTIONS(2696), 1, anon_sym_LBRACE, - STATE(274), 1, + STATE(275), 1, sym_enum_variant_list, - [44916] = 3, + [45159] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3222), 1, + ACTIONS(3253), 1, anon_sym_of, - ACTIONS(3224), 1, + ACTIONS(3255), 1, anon_sym_EQ, - [44926] = 3, + [45169] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3158), 1, + ACTIONS(3189), 1, anon_sym_COLON_COLON, - ACTIONS(3226), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, - [44936] = 3, + [45179] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3150), 1, + ACTIONS(3181), 1, anon_sym_COLON_COLON, - ACTIONS(3226), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, - [44946] = 3, + [45189] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3228), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3230), 1, + ACTIONS(3261), 1, anon_sym_RPAREN, - [44956] = 2, + [45199] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3232), 2, + ACTIONS(3263), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44964] = 3, + [45207] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3196), 1, + ACTIONS(3229), 1, anon_sym_COLON_COLON, - ACTIONS(3226), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, - [44974] = 3, + [45217] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3234), 1, + ACTIONS(3265), 1, anon_sym_SEMI, - ACTIONS(3236), 1, + ACTIONS(3267), 1, anon_sym_EQ, - [44984] = 3, + [45227] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(3238), 1, + ACTIONS(3269), 1, anon_sym_EQ, - [44994] = 3, + [45237] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3240), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3242), 1, + ACTIONS(3273), 1, sym_super, - [45004] = 3, + [45247] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3244), 1, + ACTIONS(3275), 1, anon_sym_SEMI, - ACTIONS(3246), 1, + ACTIONS(3277), 1, anon_sym_EQ, - [45014] = 2, + [45257] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3248), 2, - anon_sym_LBRACE, + ACTIONS(3279), 1, anon_sym_SEMI, - [45022] = 2, + ACTIONS(3281), 1, + anon_sym_EQ, + [45267] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3250), 2, + ACTIONS(3283), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45030] = 2, + [45275] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3252), 2, + ACTIONS(3285), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45038] = 2, + [45283] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3030), 2, + ACTIONS(3062), 2, anon_sym_COMMA, anon_sym_GT, - [45046] = 2, + [45291] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3254), 2, + ACTIONS(3287), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45054] = 2, + [45299] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3256), 2, + ACTIONS(3289), 2, sym_identifier, sym_super, - [45062] = 2, + [45307] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2432), 2, + ACTIONS(2465), 2, sym_identifier, sym_super, - [45070] = 3, + [45315] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3256), 1, + ACTIONS(3289), 1, sym_super, - ACTIONS(3258), 1, + ACTIONS(3291), 1, sym_identifier, - [45080] = 3, + [45325] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3256), 1, + ACTIONS(3289), 1, sym_super, - ACTIONS(3260), 1, + ACTIONS(3293), 1, sym_identifier, - [45090] = 3, + [45335] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2661), 1, + ACTIONS(2700), 1, sym_identifier, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - [45100] = 2, + [45345] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3262), 2, + ACTIONS(3295), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45108] = 3, + [45353] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2655), 1, + ACTIONS(2659), 1, anon_sym_LPAREN, - ACTIONS(3264), 1, + ACTIONS(3297), 1, anon_sym_COLON_COLON, - [45118] = 3, + [45363] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3266), 1, + ACTIONS(3299), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3268), 1, - anon_sym_EQ, - [45128] = 3, + [45371] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2669), 1, + ACTIONS(2694), 1, anon_sym_LBRACE, - STATE(493), 1, + STATE(568), 1, sym_enum_variant_list, - [45138] = 2, + [45381] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3270), 2, + ACTIONS(3301), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45146] = 2, + [45389] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2998), 2, + ACTIONS(3030), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45154] = 2, + [45397] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3011), 2, + ACTIONS(3043), 2, anon_sym_COMMA, anon_sym_GT, - [45162] = 2, + [45405] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3272), 2, + ACTIONS(2874), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [45170] = 2, + [45413] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2841), 2, + ACTIONS(2891), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45178] = 3, + [45421] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3174), 1, + ACTIONS(3205), 1, anon_sym_EQ, - ACTIONS(3274), 1, + ACTIONS(3303), 1, anon_sym_SEMI, - [45188] = 3, + [45431] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2254), 1, + ACTIONS(2292), 1, anon_sym_BANG, - ACTIONS(2538), 1, + ACTIONS(2589), 1, anon_sym_COLON_COLON, - [45198] = 2, + [45441] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2825), 2, + ACTIONS(3305), 2, anon_sym_COMMA, anon_sym_RPAREN, - [45206] = 3, + [45449] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2756), 1, + ACTIONS(2785), 1, anon_sym_LT2, - STATE(798), 1, + STATE(800), 1, sym_type_arguments, - [45216] = 3, + [45459] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3276), 1, + ACTIONS(3307), 1, sym_numeric_literal, - ACTIONS(3278), 1, + ACTIONS(3309), 1, sym_identifier, - [45226] = 3, + [45469] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3280), 1, + ACTIONS(3311), 1, anon_sym_COLON_COLON, - ACTIONS(3282), 1, + ACTIONS(3313), 1, anon_sym_LPAREN, - [45236] = 3, + [45479] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3284), 1, + ACTIONS(3315), 1, sym_identifier, - ACTIONS(3286), 1, + ACTIONS(3317), 1, sym_super, - [45246] = 3, + [45489] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(784), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - STATE(248), 1, + STATE(249), 1, sym_block, - [45256] = 3, + [45499] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2687), 1, + ACTIONS(2716), 1, sym_identifier, - [45266] = 3, + [45509] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3192), 1, + ACTIONS(3223), 1, sym_super, - ACTIONS(3288), 1, + ACTIONS(3319), 1, sym_identifier, - [45276] = 3, + [45519] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 1, + ACTIONS(2852), 1, sym_super, - ACTIONS(3240), 1, + ACTIONS(3271), 1, sym_identifier, - [45286] = 3, + [45529] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2758), 1, + ACTIONS(2787), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2789), 1, sym_super, - [45296] = 2, + [45539] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2858), 2, - anon_sym_RBRACE, + ACTIONS(2850), 2, anon_sym_COMMA, - [45304] = 3, + anon_sym_RPAREN, + [45547] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(374), 1, + ACTIONS(384), 1, anon_sym_LBRACE, - STATE(769), 1, + STATE(807), 1, sym_block, - [45314] = 3, + [45557] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3290), 1, + ACTIONS(3321), 1, anon_sym_LBRACE, STATE(642), 1, sym_block, - [45324] = 2, + [45567] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3292), 2, + ACTIONS(3323), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45332] = 3, + [45575] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(784), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - STATE(255), 1, + STATE(257), 1, sym_block, - [45342] = 2, + [45585] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3294), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45350] = 2, + ACTIONS(3325), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45593] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3296), 2, + ACTIONS(3327), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45358] = 3, + [45601] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3298), 1, + ACTIONS(3329), 1, anon_sym_LBRACE, STATE(415), 1, sym_block, - [45368] = 3, + [45611] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3300), 1, + ACTIONS(3331), 1, sym_identifier, - ACTIONS(3302), 1, + ACTIONS(3333), 1, sym_super, - [45378] = 3, + [45621] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2720), 1, + ACTIONS(2749), 1, sym_identifier, - [45388] = 2, + [45631] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1932), 2, + ACTIONS(3335), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [45396] = 2, + [45639] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3304), 2, + ACTIONS(3337), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45404] = 3, + [45647] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2687), 1, + ACTIONS(2716), 1, sym_identifier, - [45414] = 2, + [45657] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3306), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45422] = 3, + ACTIONS(1959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45665] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2432), 1, + ACTIONS(2465), 1, sym_super, - ACTIONS(2819), 1, + ACTIONS(2838), 1, sym_identifier, - [45432] = 3, + [45675] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3192), 1, + ACTIONS(3223), 1, sym_super, - ACTIONS(3260), 1, + ACTIONS(3293), 1, sym_identifier, - [45442] = 3, + [45685] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3242), 1, + ACTIONS(3273), 1, sym_super, - ACTIONS(3308), 1, + ACTIONS(3339), 1, sym_identifier, - [45452] = 3, + [45695] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, + ACTIONS(2657), 1, anon_sym_PIPE, - ACTIONS(3310), 1, + ACTIONS(3341), 1, anon_sym_COLON, - [45462] = 2, + [45705] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3312), 2, + ACTIONS(3343), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45470] = 3, + [45713] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3314), 1, + ACTIONS(3345), 1, anon_sym_LBRACE, STATE(83), 1, sym_block, - [45480] = 3, + [45723] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, anon_sym_LBRACE, STATE(78), 1, sym_block, - [45490] = 2, + [45733] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3316), 2, + ACTIONS(3347), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45498] = 3, + [45741] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2794), 1, + ACTIONS(2823), 1, anon_sym_LPAREN, STATE(973), 1, sym_parameters, - [45508] = 3, + [45751] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3318), 1, + ACTIONS(3349), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3320), 1, - anon_sym_EQ, - [45518] = 2, + [45759] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1956), 2, + ACTIONS(1985), 2, anon_sym_COMMA, anon_sym_RPAREN, - [45526] = 3, + [45767] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2671), 1, + ACTIONS(2696), 1, anon_sym_LBRACE, - STATE(291), 1, + STATE(292), 1, sym_enum_variant_list, - [45536] = 2, + [45777] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 2, + ACTIONS(2852), 2, sym_identifier, sym_super, - [45544] = 3, + [45785] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3192), 1, + ACTIONS(3223), 1, sym_super, - ACTIONS(3322), 1, + ACTIONS(3351), 1, sym_identifier, - [45554] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3324), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45562] = 2, + [45795] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2892), 2, + ACTIONS(2925), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45570] = 3, + [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(2386), 1, + ACTIONS(2415), 1, anon_sym_LT2, - STATE(859), 1, + STATE(874), 1, sym_type_arguments, - [45580] = 3, + [45823] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3256), 1, + ACTIONS(3289), 1, sym_super, - ACTIONS(3326), 1, + ACTIONS(3357), 1, sym_identifier, - [45590] = 3, + [45833] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2813), 1, + ACTIONS(2836), 1, sym_identifier, - [45600] = 3, + [45843] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3242), 1, + ACTIONS(3273), 1, sym_super, - ACTIONS(3328), 1, + ACTIONS(3359), 1, sym_identifier, - [45610] = 3, + [45853] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1771), 1, + ACTIONS(1798), 1, anon_sym_LBRACE, - STATE(781), 1, + STATE(783), 1, sym_field_initializer_list, - [45620] = 3, + [45863] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3330), 1, + ACTIONS(3361), 1, sym_numeric_literal, - ACTIONS(3332), 1, + ACTIONS(3363), 1, sym_identifier, - [45630] = 3, + [45873] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3334), 1, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3336), 1, + ACTIONS(3367), 1, sym_super, - [45640] = 3, + [45883] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(374), 1, + ACTIONS(384), 1, anon_sym_LBRACE, - STATE(767), 1, + STATE(789), 1, sym_block, - [45650] = 3, + [45893] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3338), 1, + ACTIONS(3369), 1, anon_sym_LBRACE, - STATE(227), 1, + STATE(229), 1, sym_block, - [45660] = 3, + [45903] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3228), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3340), 1, + ACTIONS(3371), 1, anon_sym_RPAREN, - [45670] = 3, + [45913] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2410), 1, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(3342), 1, + ACTIONS(3373), 1, anon_sym_BANG, - [45680] = 3, + [45923] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3256), 1, + ACTIONS(3289), 1, sym_super, - ACTIONS(3344), 1, + ACTIONS(3375), 1, sym_identifier, - [45690] = 3, + [45933] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2663), 1, + ACTIONS(2702), 1, sym_super, - ACTIONS(2790), 1, + ACTIONS(2819), 1, sym_identifier, - [45700] = 3, + [45943] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2790), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2821), 1, sym_super, - [45710] = 3, + [45953] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2418), 1, + ACTIONS(2439), 1, anon_sym_COLON_COLON, - ACTIONS(3346), 1, + ACTIONS(3377), 1, anon_sym_BANG, - [45720] = 3, + [45963] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 1, + ACTIONS(2852), 1, sym_super, - ACTIONS(3348), 1, + ACTIONS(3379), 1, sym_identifier, - [45730] = 3, + [45973] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3344), 1, + ACTIONS(3375), 1, sym_identifier, - ACTIONS(3350), 1, + ACTIONS(3381), 1, sym_super, - [45740] = 3, + [45983] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2420), 1, + ACTIONS(2467), 1, anon_sym_COLON_COLON, - ACTIONS(3346), 1, + ACTIONS(3377), 1, anon_sym_BANG, - [45750] = 3, + [45993] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3352), 1, + ACTIONS(3383), 1, anon_sym_SEMI, - ACTIONS(3354), 1, + ACTIONS(3385), 1, anon_sym_EQ, - [45760] = 2, + [46003] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3356), 2, + ACTIONS(3387), 2, anon_sym_COMMA, anon_sym_GT, - [45768] = 2, + [46011] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3358), 2, + ACTIONS(3389), 2, anon_sym_COMMA, anon_sym_GT, - [45776] = 2, + [46019] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3242), 2, + ACTIONS(3273), 2, sym_identifier, sym_super, - [45784] = 3, + [46027] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3360), 1, + ACTIONS(3391), 1, anon_sym_SEMI, - ACTIONS(3362), 1, + ACTIONS(3393), 1, anon_sym_EQ, - [45794] = 3, + [46037] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3362), 1, + ACTIONS(3393), 1, anon_sym_EQ, - ACTIONS(3364), 1, + ACTIONS(3395), 1, anon_sym_of, - [45804] = 3, + [46047] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3242), 1, + ACTIONS(3273), 1, sym_super, - ACTIONS(3334), 1, + ACTIONS(3365), 1, sym_identifier, - [45814] = 2, + [46057] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3366), 1, + ACTIONS(3397), 1, sym_identifier, - [45821] = 2, + [46064] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3368), 1, + ACTIONS(3399), 1, sym_identifier, - [45828] = 2, + [46071] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3370), 1, + ACTIONS(3401), 1, anon_sym_RBRACK, - [45835] = 2, + [46078] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3372), 1, + ACTIONS(3403), 1, anon_sym_DQUOTE, - [45842] = 2, + [46085] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3374), 1, + ACTIONS(3405), 1, anon_sym_SEMI, - [45849] = 2, + [46092] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3376), 1, + ACTIONS(3407), 1, anon_sym_RBRACK, - [45856] = 2, + [46099] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2422), 1, + ACTIONS(2455), 1, anon_sym_COLON_COLON, - [45863] = 2, + [46106] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3378), 1, + ACTIONS(3409), 1, anon_sym_RBRACK, - [45870] = 2, + [46113] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3380), 1, + ACTIONS(3411), 1, anon_sym_RBRACK, - [45877] = 2, + [46120] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3382), 1, + ACTIONS(3413), 1, anon_sym_RBRACK, - [45884] = 2, + [46127] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2902), 1, + ACTIONS(2933), 1, anon_sym_RBRACE, - [45891] = 2, + [46134] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2894), 1, + ACTIONS(2927), 1, anon_sym_COLON, - [45898] = 2, + [46141] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3384), 1, + ACTIONS(3415), 1, sym_identifier, - [45905] = 2, + [46148] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3386), 1, + ACTIONS(3417), 1, sym_identifier, - [45912] = 2, + [46155] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3388), 1, + ACTIONS(3419), 1, anon_sym_RBRACK, - [45919] = 2, + [46162] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3390), 1, + ACTIONS(3421), 1, sym_identifier, - [45926] = 2, + [46169] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3392), 1, + ACTIONS(3423), 1, sym_identifier, - [45933] = 2, + [46176] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3394), 1, + ACTIONS(3425), 1, sym_identifier, - [45940] = 2, + [46183] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3396), 1, + ACTIONS(3427), 1, sym_identifier, - [45947] = 2, + [46190] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3398), 1, + ACTIONS(3429), 1, anon_sym_DQUOTE, - [45954] = 2, + [46197] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3400), 1, + ACTIONS(3431), 1, anon_sym_SEMI, - [45961] = 2, + [46204] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3402), 1, + ACTIONS(3433), 1, sym_identifier, - [45968] = 2, + [46211] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3404), 1, + ACTIONS(3435), 1, anon_sym_RBRACK, - [45975] = 2, + [46218] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(689), 1, + ACTIONS(706), 1, anon_sym_RBRACK, - [45982] = 2, + [46225] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3406), 1, - sym_identifier, - [45989] = 2, + ACTIONS(3437), 1, + anon_sym_SEMI, + [46232] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2888), 1, - anon_sym_RBRACE, - [45996] = 2, + ACTIONS(3439), 1, + anon_sym_SEMI, + [46239] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1842), 1, - anon_sym_RPAREN, - [46003] = 2, + ACTIONS(3121), 1, + anon_sym_RBRACE, + [46246] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3408), 1, + ACTIONS(2921), 1, anon_sym_RBRACE, - [46010] = 2, + [46253] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3410), 1, - anon_sym_SEMI, - [46017] = 2, + ACTIONS(3441), 1, + anon_sym_RBRACE, + [46260] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3412), 1, + ACTIONS(3443), 1, anon_sym_RBRACE, - [46024] = 2, + [46267] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(669), 1, - anon_sym_RBRACK, - [46031] = 2, + ACTIONS(3445), 1, + sym_identifier, + [46274] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3414), 1, - anon_sym_SEMI, - [46038] = 2, + ACTIONS(684), 1, + anon_sym_RBRACK, + [46281] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3416), 1, + ACTIONS(3447), 1, anon_sym_RBRACK, - [46045] = 2, + [46288] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3418), 1, + ACTIONS(3449), 1, anon_sym_COLON_COLON, - [46052] = 2, + [46295] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3420), 1, + ACTIONS(3451), 1, anon_sym_DQUOTE, - [46059] = 2, + [46302] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3422), 1, + ACTIONS(3453), 1, anon_sym_RBRACK, - [46066] = 2, + [46309] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2532), 1, + ACTIONS(2593), 1, anon_sym_RPAREN, - [46073] = 2, + [46316] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3424), 1, + ACTIONS(3455), 1, anon_sym_RBRACK, - [46080] = 2, + [46323] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3426), 1, + ACTIONS(3457), 1, sym_identifier, - [46087] = 2, + [46330] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3428), 1, + ACTIONS(3459), 1, sym_identifier, - [46094] = 2, + [46337] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3430), 1, + ACTIONS(3461), 1, sym_identifier, - [46101] = 2, + [46344] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3432), 1, + ACTIONS(3463), 1, sym_identifier, - [46108] = 2, + [46351] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3434), 1, + ACTIONS(3465), 1, sym_identifier, - [46115] = 2, + [46358] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3436), 1, + ACTIONS(3467), 1, anon_sym_EQ_GT, - [46122] = 2, + [46365] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3438), 1, + ACTIONS(3469), 1, sym_identifier, - [46129] = 2, + [46372] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2622), 1, + ACTIONS(2653), 1, anon_sym_RBRACK, - [46136] = 2, + [46379] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3440), 1, + ACTIONS(3471), 1, anon_sym_EQ_GT, - [46143] = 2, + [46386] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3442), 1, + ACTIONS(3473), 1, sym_numeric_literal, - [46150] = 2, + [46393] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3444), 1, + ACTIONS(3475), 1, anon_sym_COLON_COLON, - [46157] = 2, + [46400] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3446), 1, + ACTIONS(3477), 1, anon_sym_SEMI, - [46164] = 2, - ACTIONS(3448), 1, + [46407] = 2, + ACTIONS(3479), 1, aux_sym_string_literal_token2, - ACTIONS(3450), 1, + ACTIONS(3481), 1, sym_line_comment, - [46171] = 2, + [46414] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2072), 1, + ACTIONS(2011), 1, anon_sym_COLON_COLON, - [46178] = 2, + [46421] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3452), 1, + ACTIONS(3483), 1, anon_sym_SEMI, - [46185] = 2, + [46428] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3454), 1, + ACTIONS(3485), 1, anon_sym_RBRACK, - [46192] = 2, + [46435] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2767), 1, anon_sym_RPAREN, - [46199] = 2, + [46442] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2234), 1, + ACTIONS(3487), 1, sym_identifier, - [46206] = 2, + [46449] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3456), 1, - sym_identifier, - [46213] = 2, + ACTIONS(3489), 1, + anon_sym_DQUOTE, + [46456] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3458), 1, - anon_sym_DQUOTE, - [46220] = 2, + ACTIONS(2278), 1, + sym_identifier, + [46463] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3123), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - [46227] = 2, + [46470] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2206), 1, + ACTIONS(2254), 1, anon_sym_COLON_COLON, - [46234] = 2, + [46477] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3460), 1, + ACTIONS(3491), 1, anon_sym_DQUOTE, - [46241] = 2, + [46484] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3462), 1, + ACTIONS(3493), 1, anon_sym_SEMI, - [46248] = 2, + [46491] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3464), 1, - anon_sym_EQ_GT, - [46255] = 2, + ACTIONS(3495), 1, + anon_sym_SEMI, + [46498] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3466), 1, + ACTIONS(3497), 1, anon_sym_COLON_COLON, - [46262] = 2, + [46505] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3468), 1, - anon_sym_RBRACE, - [46269] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3470), 1, - anon_sym_SEMI, - [46276] = 2, + ACTIONS(3499), 1, + anon_sym_EQ_GT, + [46512] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2880), 1, + ACTIONS(3501), 1, anon_sym_RBRACE, - [46283] = 2, + [46519] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3472), 1, - sym_identifier, - [46290] = 2, + ACTIONS(3503), 1, + anon_sym_RBRACK, + [46526] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3474), 1, + ACTIONS(3505), 1, sym_identifier, - [46297] = 2, + [46533] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3476), 1, + ACTIONS(3507), 1, sym_identifier, - [46304] = 2, + [46540] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3478), 1, + ACTIONS(3509), 1, sym_identifier, - [46311] = 2, + [46547] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3480), 1, + ACTIONS(3511), 1, sym_identifier, - [46318] = 2, + [46554] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2817), 1, - anon_sym_RPAREN, - [46325] = 2, + ACTIONS(3016), 1, + anon_sym_RBRACE, + [46561] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3482), 1, + ACTIONS(3513), 1, sym_identifier, - [46332] = 2, + [46568] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3484), 1, - anon_sym_RBRACK, - [46339] = 2, + ACTIONS(3515), 1, + sym_identifier, + [46575] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3486), 1, + ACTIONS(3517), 1, anon_sym_SEMI, - [46346] = 2, + [46582] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(679), 1, + ACTIONS(694), 1, anon_sym_RBRACK, - [46353] = 2, + [46589] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2699), 1, + ACTIONS(2842), 1, + anon_sym_RPAREN, + [46596] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2728), 1, anon_sym_RBRACK, - [46360] = 2, + [46603] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2221), 1, + ACTIONS(2260), 1, anon_sym_COLON_COLON, - [46367] = 2, + [46610] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2316), 1, + ACTIONS(2353), 1, anon_sym_COLON_COLON, - [46374] = 2, + [46617] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2691), 1, + ACTIONS(2720), 1, anon_sym_RPAREN, - [46381] = 2, + [46624] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3488), 1, + ACTIONS(3519), 1, sym_identifier, - [46388] = 2, + [46631] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3490), 1, + ACTIONS(3521), 1, sym_numeric_literal, - [46395] = 2, + [46638] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3492), 1, + ACTIONS(3523), 1, anon_sym_SEMI, - [46402] = 2, + [46645] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2801), 1, + ACTIONS(2830), 1, anon_sym_RPAREN, - [46409] = 2, + [46652] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3494), 1, + ACTIONS(3525), 1, anon_sym_SEMI, - [46416] = 2, + [46659] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3496), 1, + ACTIONS(3527), 1, sym_identifier, - [46423] = 2, + [46666] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3498), 1, + ACTIONS(3529), 1, anon_sym_SEMI, - [46430] = 2, + [46673] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2915), 1, + ACTIONS(2944), 1, anon_sym_RBRACE, - [46437] = 2, + [46680] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3500), 1, + ACTIONS(3531), 1, anon_sym_EQ_GT, - [46444] = 2, + [46687] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3502), 1, + ACTIONS(3533), 1, sym_identifier, - [46451] = 2, + [46694] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3504), 1, + ACTIONS(3535), 1, anon_sym_RPAREN, - [46458] = 2, + [46701] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3506), 1, + ACTIONS(3537), 1, anon_sym_RBRACE, - [46465] = 2, + [46708] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3045), 1, + ACTIONS(3077), 1, anon_sym_RBRACE, - [46472] = 2, + [46715] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3508), 1, + ACTIONS(3539), 1, anon_sym_COLON, - [46479] = 2, + [46722] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(661), 1, + ACTIONS(676), 1, anon_sym_RBRACK, - [46486] = 2, + [46729] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3510), 1, + ACTIONS(3541), 1, anon_sym_LBRACK, - [46493] = 2, + [46736] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3051), 1, + ACTIONS(3083), 1, anon_sym_RBRACE, - [46500] = 2, + [46743] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3512), 1, + ACTIONS(3543), 1, anon_sym_LBRACK, - [46507] = 2, + [46750] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3514), 1, + ACTIONS(3545), 1, anon_sym_COLON, - [46514] = 2, + [46757] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3224), 1, + ACTIONS(3255), 1, anon_sym_EQ, - [46521] = 2, + [46764] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3547), 1, + anon_sym_EQ_GT, + [46771] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3516), 1, + ACTIONS(3549), 1, anon_sym_SEMI, - [46528] = 2, + [46778] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3518), 1, + ACTIONS(3551), 1, anon_sym_SEMI, - [46535] = 2, + [46785] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1834), 1, + ACTIONS(1845), 1, anon_sym_RPAREN, - [46542] = 2, + [46792] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3520), 1, - anon_sym_EQ_GT, - [46549] = 2, + ACTIONS(3553), 1, + anon_sym_SEMI, + [46799] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3522), 1, + ACTIONS(3555), 1, anon_sym_SEMI, - [46556] = 2, + [46806] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3524), 1, + ACTIONS(3557), 1, anon_sym_COLON, - [46563] = 2, + [46813] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3526), 1, + ACTIONS(3559), 1, anon_sym_COLON, - [46570] = 2, + [46820] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3528), 1, + ACTIONS(3561), 1, anon_sym_RBRACE, - [46577] = 2, + [46827] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3530), 1, + ACTIONS(3563), 1, anon_sym_SEMI, - [46584] = 2, + [46834] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3075), 1, + ACTIONS(3107), 1, anon_sym_COLON, - [46591] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3532), 1, - anon_sym_SEMI, - [46598] = 2, + [46841] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3534), 1, + ACTIONS(3565), 1, sym_identifier, - [46605] = 2, + [46848] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3536), 1, + ACTIONS(3567), 1, anon_sym_SEMI, - [46612] = 2, + [46855] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3538), 1, + ACTIONS(3569), 1, ts_builtin_sym_end, - [46619] = 2, + [46862] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1737), 1, + ACTIONS(1768), 1, anon_sym_COLON_COLON, - [46626] = 2, - ACTIONS(3450), 1, + [46869] = 2, + ACTIONS(3481), 1, sym_line_comment, - ACTIONS(3540), 1, + ACTIONS(3571), 1, aux_sym_string_literal_token2, - [46633] = 2, - ACTIONS(3450), 1, + [46876] = 2, + ACTIONS(3481), 1, sym_line_comment, - ACTIONS(3542), 1, + ACTIONS(3573), 1, aux_sym_string_literal_token2, - [46640] = 2, + [46883] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1994), 1, + ACTIONS(2043), 1, anon_sym_COLON_COLON, - [46647] = 2, + [46890] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3544), 1, + ACTIONS(3575), 1, sym_identifier, - [46654] = 2, + [46897] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3546), 1, + ACTIONS(3577), 1, sym_identifier, - [46661] = 2, + [46904] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3548), 1, + ACTIONS(3579), 1, anon_sym_COLON_COLON, - [46668] = 2, + [46911] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3550), 1, + ACTIONS(3581), 1, anon_sym_RBRACK, - [46675] = 2, + [46918] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3552), 1, - anon_sym_COLON, - [46682] = 2, + ACTIONS(3583), 1, + anon_sym_RBRACE, + [46925] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3554), 1, - anon_sym_RBRACE, - [46689] = 2, + ACTIONS(2670), 1, + anon_sym_RPAREN, + [46932] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3113), 1, - anon_sym_RBRACE, - [46696] = 2, + ACTIONS(3585), 1, + anon_sym_RPAREN, + [46939] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3556), 1, + ACTIONS(3587), 1, anon_sym_SEMI, - [46703] = 2, + [46946] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3558), 1, + ACTIONS(3589), 1, sym_identifier, - [46710] = 2, + [46953] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3560), 1, + ACTIONS(3591), 1, sym_identifier, - [46717] = 2, - ACTIONS(3450), 1, + [46960] = 2, + ACTIONS(3481), 1, sym_line_comment, - ACTIONS(3562), 1, + ACTIONS(3593), 1, aux_sym_string_literal_token2, - [46724] = 2, + [46967] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3564), 1, + ACTIONS(3595), 1, sym_identifier, - [46731] = 2, + [46974] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3566), 1, - anon_sym_RPAREN, - [46738] = 2, + ACTIONS(3597), 1, + anon_sym_SEMI, + [46981] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2768), 1, + ACTIONS(2797), 1, anon_sym_COLON_COLON, - [46745] = 2, + [46988] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3568), 1, - anon_sym_SEMI, - [46752] = 2, - ACTIONS(3450), 1, + ACTIONS(3599), 1, + anon_sym_COLON, + [46995] = 2, + ACTIONS(3481), 1, sym_line_comment, - ACTIONS(3570), 1, + ACTIONS(3601), 1, aux_sym_string_literal_token2, - [46759] = 2, + [47002] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3572), 1, + ACTIONS(3603), 1, sym_identifier, - [46766] = 2, + [47009] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2564), 1, + ACTIONS(2639), 1, anon_sym_COLON_COLON, - [46773] = 2, + [47016] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3574), 1, - anon_sym_COLON, - [46780] = 2, + ACTIONS(3125), 1, + anon_sym_RBRACE, + [47023] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2827), 1, + ACTIONS(2856), 1, anon_sym_COLON_COLON, - [46787] = 2, + [47030] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3576), 1, + ACTIONS(3605), 1, sym_identifier, - [46794] = 2, + [47037] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3578), 1, + ACTIONS(3607), 1, sym_identifier, - [46801] = 2, + [47044] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2639), 1, + ACTIONS(2684), 1, anon_sym_RPAREN, - [46808] = 2, + [47051] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2258), 1, + ACTIONS(2270), 1, sym_identifier, - [46815] = 2, + [47058] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3580), 1, + ACTIONS(3609), 1, anon_sym_COLON, - [46822] = 2, + [47065] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3582), 1, + ACTIONS(3611), 1, anon_sym_LBRACK, - [46829] = 2, + [47072] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3584), 1, + ACTIONS(3613), 1, anon_sym_LBRACK, - [46836] = 2, + [47079] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3586), 1, + ACTIONS(3615), 1, sym_identifier, - [46843] = 2, + [47086] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3092), 1, - anon_sym_RBRACE, - [46850] = 2, + ACTIONS(3617), 1, + anon_sym_COLON, + [47093] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, sym_identifier, - [46857] = 2, + [47100] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2643), 1, - anon_sym_RPAREN, - [46864] = 2, + ACTIONS(3142), 1, + anon_sym_RBRACE, + [47107] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3588), 1, + ACTIONS(3619), 1, anon_sym_COLON, - [46871] = 2, + [47114] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3096), 1, + ACTIONS(3146), 1, anon_sym_RBRACE, - [46878] = 2, + [47121] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3166), 1, + ACTIONS(3197), 1, anon_sym_EQ, - [46885] = 2, + [47128] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3117), 1, - anon_sym_RBRACE, - [46892] = 2, + ACTIONS(1869), 1, + anon_sym_RPAREN, + [47135] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3590), 1, + ACTIONS(3621), 1, anon_sym_LBRACK, - [46899] = 2, + [47142] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3592), 1, + ACTIONS(3623), 1, anon_sym_LBRACK, - [46906] = 2, + [47149] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3594), 1, + ACTIONS(3625), 1, anon_sym_LBRACK, - [46913] = 2, + [47156] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3596), 1, + ACTIONS(3627), 1, anon_sym_LBRACK, - [46920] = 2, + [47163] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3598), 1, + ACTIONS(3629), 1, sym_identifier, - [46927] = 2, + [47170] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3600), 1, + ACTIONS(3631), 1, sym_identifier, - [46934] = 2, + [47177] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3602), 1, + ACTIONS(3633), 1, sym_identifier, - [46941] = 2, + [47184] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3604), 1, + ACTIONS(3635), 1, sym_identifier, - [46948] = 2, + [47191] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3606), 1, + ACTIONS(3637), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(220)] = 0, - [SMALL_STATE(221)] = 70, - [SMALL_STATE(222)] = 140, - [SMALL_STATE(223)] = 210, - [SMALL_STATE(224)] = 280, - [SMALL_STATE(225)] = 350, - [SMALL_STATE(226)] = 420, - [SMALL_STATE(227)] = 490, - [SMALL_STATE(228)] = 560, - [SMALL_STATE(229)] = 686, - [SMALL_STATE(230)] = 799, - [SMALL_STATE(231)] = 922, - [SMALL_STATE(232)] = 1035, - [SMALL_STATE(233)] = 1100, - [SMALL_STATE(234)] = 1213, - [SMALL_STATE(235)] = 1278, - [SMALL_STATE(236)] = 1343, - [SMALL_STATE(237)] = 1466, - [SMALL_STATE(238)] = 1531, - [SMALL_STATE(239)] = 1596, - [SMALL_STATE(240)] = 1709, - [SMALL_STATE(241)] = 1832, - [SMALL_STATE(242)] = 1945, - [SMALL_STATE(243)] = 2010, - [SMALL_STATE(244)] = 2074, - [SMALL_STATE(245)] = 2194, - [SMALL_STATE(246)] = 2258, - [SMALL_STATE(247)] = 2322, - [SMALL_STATE(248)] = 2386, - [SMALL_STATE(249)] = 2450, - [SMALL_STATE(250)] = 2518, - [SMALL_STATE(251)] = 2582, - [SMALL_STATE(252)] = 2646, - [SMALL_STATE(253)] = 2710, - [SMALL_STATE(254)] = 2774, - [SMALL_STATE(255)] = 2842, - [SMALL_STATE(256)] = 2906, - [SMALL_STATE(257)] = 2970, - [SMALL_STATE(258)] = 3033, - [SMALL_STATE(259)] = 3096, - [SMALL_STATE(260)] = 3159, - [SMALL_STATE(261)] = 3222, - [SMALL_STATE(262)] = 3285, - [SMALL_STATE(263)] = 3348, - [SMALL_STATE(264)] = 3411, - [SMALL_STATE(265)] = 3474, - [SMALL_STATE(266)] = 3537, - [SMALL_STATE(267)] = 3600, - [SMALL_STATE(268)] = 3663, - [SMALL_STATE(269)] = 3726, - [SMALL_STATE(270)] = 3789, - [SMALL_STATE(271)] = 3852, - [SMALL_STATE(272)] = 3915, - [SMALL_STATE(273)] = 3978, - [SMALL_STATE(274)] = 4041, - [SMALL_STATE(275)] = 4104, - [SMALL_STATE(276)] = 4167, - [SMALL_STATE(277)] = 4230, - [SMALL_STATE(278)] = 4293, - [SMALL_STATE(279)] = 4356, - [SMALL_STATE(280)] = 4419, - [SMALL_STATE(281)] = 4482, - [SMALL_STATE(282)] = 4545, - [SMALL_STATE(283)] = 4608, - [SMALL_STATE(284)] = 4671, - [SMALL_STATE(285)] = 4734, - [SMALL_STATE(286)] = 4797, - [SMALL_STATE(287)] = 4860, - [SMALL_STATE(288)] = 4923, - [SMALL_STATE(289)] = 4986, - [SMALL_STATE(290)] = 5049, - [SMALL_STATE(291)] = 5112, - [SMALL_STATE(292)] = 5175, - [SMALL_STATE(293)] = 5238, - [SMALL_STATE(294)] = 5301, - [SMALL_STATE(295)] = 5364, - [SMALL_STATE(296)] = 5427, - [SMALL_STATE(297)] = 5490, - [SMALL_STATE(298)] = 5553, - [SMALL_STATE(299)] = 5616, - [SMALL_STATE(300)] = 5679, - [SMALL_STATE(301)] = 5742, - [SMALL_STATE(302)] = 5805, - [SMALL_STATE(303)] = 5868, - [SMALL_STATE(304)] = 5931, - [SMALL_STATE(305)] = 5994, - [SMALL_STATE(306)] = 6057, - [SMALL_STATE(307)] = 6120, - [SMALL_STATE(308)] = 6183, - [SMALL_STATE(309)] = 6246, - [SMALL_STATE(310)] = 6309, - [SMALL_STATE(311)] = 6372, - [SMALL_STATE(312)] = 6435, - [SMALL_STATE(313)] = 6498, - [SMALL_STATE(314)] = 6561, - [SMALL_STATE(315)] = 6624, - [SMALL_STATE(316)] = 6687, - [SMALL_STATE(317)] = 6750, - [SMALL_STATE(318)] = 6813, - [SMALL_STATE(319)] = 6876, - [SMALL_STATE(320)] = 6939, - [SMALL_STATE(321)] = 7002, - [SMALL_STATE(322)] = 7065, - [SMALL_STATE(323)] = 7128, - [SMALL_STATE(324)] = 7191, - [SMALL_STATE(325)] = 7254, - [SMALL_STATE(326)] = 7317, - [SMALL_STATE(327)] = 7380, - [SMALL_STATE(328)] = 7443, - [SMALL_STATE(329)] = 7506, - [SMALL_STATE(330)] = 7569, - [SMALL_STATE(331)] = 7632, - [SMALL_STATE(332)] = 7695, - [SMALL_STATE(333)] = 7758, - [SMALL_STATE(334)] = 7821, - [SMALL_STATE(335)] = 7884, - [SMALL_STATE(336)] = 7947, - [SMALL_STATE(337)] = 8061, - [SMALL_STATE(338)] = 8175, - [SMALL_STATE(339)] = 8289, - [SMALL_STATE(340)] = 8403, - [SMALL_STATE(341)] = 8517, - [SMALL_STATE(342)] = 8630, - [SMALL_STATE(343)] = 8743, - [SMALL_STATE(344)] = 8856, - [SMALL_STATE(345)] = 8969, - [SMALL_STATE(346)] = 9080, - [SMALL_STATE(347)] = 9191, - [SMALL_STATE(348)] = 9302, - [SMALL_STATE(349)] = 9410, - [SMALL_STATE(350)] = 9514, - [SMALL_STATE(351)] = 9618, - [SMALL_STATE(352)] = 9717, - [SMALL_STATE(353)] = 9816, - [SMALL_STATE(354)] = 9915, - [SMALL_STATE(355)] = 10014, - [SMALL_STATE(356)] = 10113, - [SMALL_STATE(357)] = 10212, - [SMALL_STATE(358)] = 10311, - [SMALL_STATE(359)] = 10410, - [SMALL_STATE(360)] = 10506, - [SMALL_STATE(361)] = 10602, - [SMALL_STATE(362)] = 10698, - [SMALL_STATE(363)] = 10794, - [SMALL_STATE(364)] = 10890, - [SMALL_STATE(365)] = 10986, - [SMALL_STATE(366)] = 11082, - [SMALL_STATE(367)] = 11178, - [SMALL_STATE(368)] = 11274, - [SMALL_STATE(369)] = 11370, - [SMALL_STATE(370)] = 11466, - [SMALL_STATE(371)] = 11562, - [SMALL_STATE(372)] = 11658, - [SMALL_STATE(373)] = 11754, - [SMALL_STATE(374)] = 11850, - [SMALL_STATE(375)] = 11946, - [SMALL_STATE(376)] = 12039, - [SMALL_STATE(377)] = 12132, - [SMALL_STATE(378)] = 12225, - [SMALL_STATE(379)] = 12318, - [SMALL_STATE(380)] = 12411, - [SMALL_STATE(381)] = 12504, - [SMALL_STATE(382)] = 12597, - [SMALL_STATE(383)] = 12654, - [SMALL_STATE(384)] = 12747, - [SMALL_STATE(385)] = 12840, - [SMALL_STATE(386)] = 12933, - [SMALL_STATE(387)] = 13026, - [SMALL_STATE(388)] = 13119, - [SMALL_STATE(389)] = 13212, - [SMALL_STATE(390)] = 13305, - [SMALL_STATE(391)] = 13398, - [SMALL_STATE(392)] = 13491, - [SMALL_STATE(393)] = 13584, - [SMALL_STATE(394)] = 13674, - [SMALL_STATE(395)] = 13764, - [SMALL_STATE(396)] = 13854, - [SMALL_STATE(397)] = 13944, - [SMALL_STATE(398)] = 14034, - [SMALL_STATE(399)] = 14124, - [SMALL_STATE(400)] = 14211, - [SMALL_STATE(401)] = 14298, - [SMALL_STATE(402)] = 14385, - [SMALL_STATE(403)] = 14472, - [SMALL_STATE(404)] = 14523, - [SMALL_STATE(405)] = 14571, - [SMALL_STATE(406)] = 14616, - [SMALL_STATE(407)] = 14661, - [SMALL_STATE(408)] = 14706, - [SMALL_STATE(409)] = 14751, - [SMALL_STATE(410)] = 14796, - [SMALL_STATE(411)] = 14841, - [SMALL_STATE(412)] = 14894, - [SMALL_STATE(413)] = 14939, - [SMALL_STATE(414)] = 14985, - [SMALL_STATE(415)] = 15031, - [SMALL_STATE(416)] = 15079, - [SMALL_STATE(417)] = 15125, - [SMALL_STATE(418)] = 15171, - [SMALL_STATE(419)] = 15214, - [SMALL_STATE(420)] = 15267, - [SMALL_STATE(421)] = 15340, - [SMALL_STATE(422)] = 15413, - [SMALL_STATE(423)] = 15456, - [SMALL_STATE(424)] = 15509, - [SMALL_STATE(425)] = 15552, - [SMALL_STATE(426)] = 15595, - [SMALL_STATE(427)] = 15648, - [SMALL_STATE(428)] = 15701, - [SMALL_STATE(429)] = 15748, - [SMALL_STATE(430)] = 15793, - [SMALL_STATE(431)] = 15836, - [SMALL_STATE(432)] = 15881, - [SMALL_STATE(433)] = 15954, - [SMALL_STATE(434)] = 16007, - [SMALL_STATE(435)] = 16080, - [SMALL_STATE(436)] = 16125, - [SMALL_STATE(437)] = 16172, - [SMALL_STATE(438)] = 16230, - [SMALL_STATE(439)] = 16272, - [SMALL_STATE(440)] = 16314, - [SMALL_STATE(441)] = 16356, - [SMALL_STATE(442)] = 16398, - [SMALL_STATE(443)] = 16440, - [SMALL_STATE(444)] = 16482, - [SMALL_STATE(445)] = 16524, - [SMALL_STATE(446)] = 16566, - [SMALL_STATE(447)] = 16608, - [SMALL_STATE(448)] = 16650, - [SMALL_STATE(449)] = 16692, - [SMALL_STATE(450)] = 16734, - [SMALL_STATE(451)] = 16776, - [SMALL_STATE(452)] = 16818, - [SMALL_STATE(453)] = 16860, - [SMALL_STATE(454)] = 16902, - [SMALL_STATE(455)] = 16944, - [SMALL_STATE(456)] = 16986, - [SMALL_STATE(457)] = 17058, - [SMALL_STATE(458)] = 17100, - [SMALL_STATE(459)] = 17172, - [SMALL_STATE(460)] = 17214, - [SMALL_STATE(461)] = 17270, - [SMALL_STATE(462)] = 17340, - [SMALL_STATE(463)] = 17382, - [SMALL_STATE(464)] = 17454, - [SMALL_STATE(465)] = 17496, - [SMALL_STATE(466)] = 17538, - [SMALL_STATE(467)] = 17580, - [SMALL_STATE(468)] = 17622, - [SMALL_STATE(469)] = 17686, - [SMALL_STATE(470)] = 17728, - [SMALL_STATE(471)] = 17782, - [SMALL_STATE(472)] = 17824, - [SMALL_STATE(473)] = 17868, - [SMALL_STATE(474)] = 17928, - [SMALL_STATE(475)] = 17970, - [SMALL_STATE(476)] = 18012, - [SMALL_STATE(477)] = 18054, - [SMALL_STATE(478)] = 18096, - [SMALL_STATE(479)] = 18138, - [SMALL_STATE(480)] = 18200, - [SMALL_STATE(481)] = 18242, - [SMALL_STATE(482)] = 18284, - [SMALL_STATE(483)] = 18356, - [SMALL_STATE(484)] = 18424, - [SMALL_STATE(485)] = 18466, - [SMALL_STATE(486)] = 18508, - [SMALL_STATE(487)] = 18549, - [SMALL_STATE(488)] = 18590, - [SMALL_STATE(489)] = 18631, - [SMALL_STATE(490)] = 18672, - [SMALL_STATE(491)] = 18721, - [SMALL_STATE(492)] = 18762, - [SMALL_STATE(493)] = 18803, - [SMALL_STATE(494)] = 18844, - [SMALL_STATE(495)] = 18885, - [SMALL_STATE(496)] = 18964, - [SMALL_STATE(497)] = 19005, - [SMALL_STATE(498)] = 19046, - [SMALL_STATE(499)] = 19087, - [SMALL_STATE(500)] = 19128, - [SMALL_STATE(501)] = 19169, - [SMALL_STATE(502)] = 19210, - [SMALL_STATE(503)] = 19251, - [SMALL_STATE(504)] = 19292, - [SMALL_STATE(505)] = 19333, - [SMALL_STATE(506)] = 19374, - [SMALL_STATE(507)] = 19415, - [SMALL_STATE(508)] = 19456, - [SMALL_STATE(509)] = 19497, - [SMALL_STATE(510)] = 19538, - [SMALL_STATE(511)] = 19579, - [SMALL_STATE(512)] = 19620, - [SMALL_STATE(513)] = 19661, - [SMALL_STATE(514)] = 19702, - [SMALL_STATE(515)] = 19743, - [SMALL_STATE(516)] = 19784, - [SMALL_STATE(517)] = 19825, - [SMALL_STATE(518)] = 19866, - [SMALL_STATE(519)] = 19907, - [SMALL_STATE(520)] = 19948, - [SMALL_STATE(521)] = 19989, - [SMALL_STATE(522)] = 20030, - [SMALL_STATE(523)] = 20071, - [SMALL_STATE(524)] = 20116, - [SMALL_STATE(525)] = 20157, - [SMALL_STATE(526)] = 20198, - [SMALL_STATE(527)] = 20239, - [SMALL_STATE(528)] = 20280, - [SMALL_STATE(529)] = 20321, - [SMALL_STATE(530)] = 20362, - [SMALL_STATE(531)] = 20403, - [SMALL_STATE(532)] = 20444, - [SMALL_STATE(533)] = 20485, - [SMALL_STATE(534)] = 20526, - [SMALL_STATE(535)] = 20605, - [SMALL_STATE(536)] = 20646, - [SMALL_STATE(537)] = 20687, - [SMALL_STATE(538)] = 20728, - [SMALL_STATE(539)] = 20769, - [SMALL_STATE(540)] = 20810, - [SMALL_STATE(541)] = 20851, - [SMALL_STATE(542)] = 20892, - [SMALL_STATE(543)] = 20933, - [SMALL_STATE(544)] = 21012, - [SMALL_STATE(545)] = 21053, - [SMALL_STATE(546)] = 21094, - [SMALL_STATE(547)] = 21135, - [SMALL_STATE(548)] = 21214, - [SMALL_STATE(549)] = 21255, - [SMALL_STATE(550)] = 21296, - [SMALL_STATE(551)] = 21337, - [SMALL_STATE(552)] = 21378, - [SMALL_STATE(553)] = 21419, - [SMALL_STATE(554)] = 21460, - [SMALL_STATE(555)] = 21501, - [SMALL_STATE(556)] = 21542, - [SMALL_STATE(557)] = 21583, - [SMALL_STATE(558)] = 21624, - [SMALL_STATE(559)] = 21665, - [SMALL_STATE(560)] = 21706, - [SMALL_STATE(561)] = 21747, - [SMALL_STATE(562)] = 21788, - [SMALL_STATE(563)] = 21829, - [SMALL_STATE(564)] = 21870, - [SMALL_STATE(565)] = 21911, - [SMALL_STATE(566)] = 21952, - [SMALL_STATE(567)] = 21993, - [SMALL_STATE(568)] = 22034, - [SMALL_STATE(569)] = 22075, - [SMALL_STATE(570)] = 22116, - [SMALL_STATE(571)] = 22182, - [SMALL_STATE(572)] = 22224, - [SMALL_STATE(573)] = 22300, - [SMALL_STATE(574)] = 22342, - [SMALL_STATE(575)] = 22418, - [SMALL_STATE(576)] = 22484, - [SMALL_STATE(577)] = 22526, - [SMALL_STATE(578)] = 22602, - [SMALL_STATE(579)] = 22678, - [SMALL_STATE(580)] = 22724, - [SMALL_STATE(581)] = 22800, - [SMALL_STATE(582)] = 22866, - [SMALL_STATE(583)] = 22932, - [SMALL_STATE(584)] = 22998, - [SMALL_STATE(585)] = 23064, - [SMALL_STATE(586)] = 23130, - [SMALL_STATE(587)] = 23196, - [SMALL_STATE(588)] = 23272, - [SMALL_STATE(589)] = 23314, - [SMALL_STATE(590)] = 23380, - [SMALL_STATE(591)] = 23446, - [SMALL_STATE(592)] = 23509, - [SMALL_STATE(593)] = 23552, - [SMALL_STATE(594)] = 23593, - [SMALL_STATE(595)] = 23656, - [SMALL_STATE(596)] = 23699, - [SMALL_STATE(597)] = 23762, - [SMALL_STATE(598)] = 23825, - [SMALL_STATE(599)] = 23898, - [SMALL_STATE(600)] = 23961, - [SMALL_STATE(601)] = 24024, - [SMALL_STATE(602)] = 24087, - [SMALL_STATE(603)] = 24160, - [SMALL_STATE(604)] = 24223, - [SMALL_STATE(605)] = 24296, - [SMALL_STATE(606)] = 24359, - [SMALL_STATE(607)] = 24422, - [SMALL_STATE(608)] = 24485, - [SMALL_STATE(609)] = 24526, - [SMALL_STATE(610)] = 24589, - [SMALL_STATE(611)] = 24652, - [SMALL_STATE(612)] = 24723, - [SMALL_STATE(613)] = 24786, - [SMALL_STATE(614)] = 24829, - [SMALL_STATE(615)] = 24892, - [SMALL_STATE(616)] = 24931, - [SMALL_STATE(617)] = 24994, - [SMALL_STATE(618)] = 25033, - [SMALL_STATE(619)] = 25096, - [SMALL_STATE(620)] = 25167, - [SMALL_STATE(621)] = 25238, - [SMALL_STATE(622)] = 25301, - [SMALL_STATE(623)] = 25344, - [SMALL_STATE(624)] = 25417, - [SMALL_STATE(625)] = 25490, - [SMALL_STATE(626)] = 25563, - [SMALL_STATE(627)] = 25636, - [SMALL_STATE(628)] = 25707, - [SMALL_STATE(629)] = 25770, - [SMALL_STATE(630)] = 25841, - [SMALL_STATE(631)] = 25904, - [SMALL_STATE(632)] = 25967, - [SMALL_STATE(633)] = 26030, - [SMALL_STATE(634)] = 26101, - [SMALL_STATE(635)] = 26174, - [SMALL_STATE(636)] = 26247, - [SMALL_STATE(637)] = 26320, - [SMALL_STATE(638)] = 26383, - [SMALL_STATE(639)] = 26446, - [SMALL_STATE(640)] = 26519, - [SMALL_STATE(641)] = 26592, - [SMALL_STATE(642)] = 26665, - [SMALL_STATE(643)] = 26708, - [SMALL_STATE(644)] = 26781, - [SMALL_STATE(645)] = 26822, - [SMALL_STATE(646)] = 26863, - [SMALL_STATE(647)] = 26926, - [SMALL_STATE(648)] = 26989, - [SMALL_STATE(649)] = 27052, - [SMALL_STATE(650)] = 27115, - [SMALL_STATE(651)] = 27188, - [SMALL_STATE(652)] = 27261, - [SMALL_STATE(653)] = 27334, - [SMALL_STATE(654)] = 27397, - [SMALL_STATE(655)] = 27460, - [SMALL_STATE(656)] = 27533, - [SMALL_STATE(657)] = 27606, - [SMALL_STATE(658)] = 27679, - [SMALL_STATE(659)] = 27750, - [SMALL_STATE(660)] = 27821, - [SMALL_STATE(661)] = 27884, - [SMALL_STATE(662)] = 27955, - [SMALL_STATE(663)] = 27994, - [SMALL_STATE(664)] = 28033, - [SMALL_STATE(665)] = 28096, - [SMALL_STATE(666)] = 28135, - [SMALL_STATE(667)] = 28198, - [SMALL_STATE(668)] = 28261, - [SMALL_STATE(669)] = 28300, - [SMALL_STATE(670)] = 28363, - [SMALL_STATE(671)] = 28402, - [SMALL_STATE(672)] = 28441, - [SMALL_STATE(673)] = 28514, - [SMALL_STATE(674)] = 28587, - [SMALL_STATE(675)] = 28660, - [SMALL_STATE(676)] = 28733, - [SMALL_STATE(677)] = 28796, - [SMALL_STATE(678)] = 28867, - [SMALL_STATE(679)] = 28930, - [SMALL_STATE(680)] = 29003, - [SMALL_STATE(681)] = 29076, - [SMALL_STATE(682)] = 29149, - [SMALL_STATE(683)] = 29212, - [SMALL_STATE(684)] = 29251, - [SMALL_STATE(685)] = 29324, - [SMALL_STATE(686)] = 29363, - [SMALL_STATE(687)] = 29436, - [SMALL_STATE(688)] = 29499, - [SMALL_STATE(689)] = 29562, - [SMALL_STATE(690)] = 29601, - [SMALL_STATE(691)] = 29664, - [SMALL_STATE(692)] = 29727, - [SMALL_STATE(693)] = 29766, - [SMALL_STATE(694)] = 29826, - [SMALL_STATE(695)] = 29896, - [SMALL_STATE(696)] = 29934, - [SMALL_STATE(697)] = 29984, - [SMALL_STATE(698)] = 30032, - [SMALL_STATE(699)] = 30100, - [SMALL_STATE(700)] = 30138, - [SMALL_STATE(701)] = 30178, - [SMALL_STATE(702)] = 30234, - [SMALL_STATE(703)] = 30304, - [SMALL_STATE(704)] = 30344, - [SMALL_STATE(705)] = 30384, - [SMALL_STATE(706)] = 30432, - [SMALL_STATE(707)] = 30502, - [SMALL_STATE(708)] = 30572, - [SMALL_STATE(709)] = 30630, - [SMALL_STATE(710)] = 30694, - [SMALL_STATE(711)] = 30760, - [SMALL_STATE(712)] = 30812, - [SMALL_STATE(713)] = 30850, - [SMALL_STATE(714)] = 30918, - [SMALL_STATE(715)] = 30956, - [SMALL_STATE(716)] = 30994, - [SMALL_STATE(717)] = 31064, - [SMALL_STATE(718)] = 31132, - [SMALL_STATE(719)] = 31170, - [SMALL_STATE(720)] = 31238, - [SMALL_STATE(721)] = 31308, - [SMALL_STATE(722)] = 31378, - [SMALL_STATE(723)] = 31448, - [SMALL_STATE(724)] = 31486, - [SMALL_STATE(725)] = 31556, - [SMALL_STATE(726)] = 31626, - [SMALL_STATE(727)] = 31696, - [SMALL_STATE(728)] = 31766, - [SMALL_STATE(729)] = 31836, - [SMALL_STATE(730)] = 31874, - [SMALL_STATE(731)] = 31944, - [SMALL_STATE(732)] = 31998, - [SMALL_STATE(733)] = 32068, - [SMALL_STATE(734)] = 32138, - [SMALL_STATE(735)] = 32208, - [SMALL_STATE(736)] = 32278, - [SMALL_STATE(737)] = 32348, - [SMALL_STATE(738)] = 32418, - [SMALL_STATE(739)] = 32488, - [SMALL_STATE(740)] = 32558, - [SMALL_STATE(741)] = 32628, - [SMALL_STATE(742)] = 32668, - [SMALL_STATE(743)] = 32738, - [SMALL_STATE(744)] = 32786, - [SMALL_STATE(745)] = 32824, - [SMALL_STATE(746)] = 32892, - [SMALL_STATE(747)] = 32944, - [SMALL_STATE(748)] = 33014, - [SMALL_STATE(749)] = 33084, - [SMALL_STATE(750)] = 33154, - [SMALL_STATE(751)] = 33220, - [SMALL_STATE(752)] = 33284, - [SMALL_STATE(753)] = 33342, - [SMALL_STATE(754)] = 33396, - [SMALL_STATE(755)] = 33452, - [SMALL_STATE(756)] = 33520, - [SMALL_STATE(757)] = 33570, - [SMALL_STATE(758)] = 33630, - [SMALL_STATE(759)] = 33698, - [SMALL_STATE(760)] = 33768, - [SMALL_STATE(761)] = 33838, - [SMALL_STATE(762)] = 33906, - [SMALL_STATE(763)] = 33976, - [SMALL_STATE(764)] = 34024, - [SMALL_STATE(765)] = 34094, - [SMALL_STATE(766)] = 34134, - [SMALL_STATE(767)] = 34171, - [SMALL_STATE(768)] = 34208, - [SMALL_STATE(769)] = 34245, - [SMALL_STATE(770)] = 34282, - [SMALL_STATE(771)] = 34319, - [SMALL_STATE(772)] = 34356, - [SMALL_STATE(773)] = 34393, - [SMALL_STATE(774)] = 34430, - [SMALL_STATE(775)] = 34467, - [SMALL_STATE(776)] = 34504, - [SMALL_STATE(777)] = 34541, - [SMALL_STATE(778)] = 34578, - [SMALL_STATE(779)] = 34615, - [SMALL_STATE(780)] = 34652, - [SMALL_STATE(781)] = 34689, - [SMALL_STATE(782)] = 34726, - [SMALL_STATE(783)] = 34763, - [SMALL_STATE(784)] = 34818, - [SMALL_STATE(785)] = 34855, - [SMALL_STATE(786)] = 34892, - [SMALL_STATE(787)] = 34929, - [SMALL_STATE(788)] = 34966, - [SMALL_STATE(789)] = 35003, - [SMALL_STATE(790)] = 35040, - [SMALL_STATE(791)] = 35077, - [SMALL_STATE(792)] = 35114, - [SMALL_STATE(793)] = 35151, - [SMALL_STATE(794)] = 35188, - [SMALL_STATE(795)] = 35225, - [SMALL_STATE(796)] = 35262, - [SMALL_STATE(797)] = 35299, - [SMALL_STATE(798)] = 35336, - [SMALL_STATE(799)] = 35373, - [SMALL_STATE(800)] = 35410, - [SMALL_STATE(801)] = 35447, - [SMALL_STATE(802)] = 35484, - [SMALL_STATE(803)] = 35521, - [SMALL_STATE(804)] = 35558, - [SMALL_STATE(805)] = 35595, - [SMALL_STATE(806)] = 35632, - [SMALL_STATE(807)] = 35669, - [SMALL_STATE(808)] = 35706, - [SMALL_STATE(809)] = 35743, - [SMALL_STATE(810)] = 35780, - [SMALL_STATE(811)] = 35817, - [SMALL_STATE(812)] = 35854, - [SMALL_STATE(813)] = 35906, - [SMALL_STATE(814)] = 35958, - [SMALL_STATE(815)] = 36007, - [SMALL_STATE(816)] = 36056, - [SMALL_STATE(817)] = 36105, - [SMALL_STATE(818)] = 36154, - [SMALL_STATE(819)] = 36203, - [SMALL_STATE(820)] = 36240, - [SMALL_STATE(821)] = 36271, - [SMALL_STATE(822)] = 36313, - [SMALL_STATE(823)] = 36352, - [SMALL_STATE(824)] = 36391, - [SMALL_STATE(825)] = 36430, - [SMALL_STATE(826)] = 36469, - [SMALL_STATE(827)] = 36508, - [SMALL_STATE(828)] = 36547, - [SMALL_STATE(829)] = 36586, - [SMALL_STATE(830)] = 36625, - [SMALL_STATE(831)] = 36664, - [SMALL_STATE(832)] = 36703, - [SMALL_STATE(833)] = 36742, - [SMALL_STATE(834)] = 36778, - [SMALL_STATE(835)] = 36814, - [SMALL_STATE(836)] = 36840, - [SMALL_STATE(837)] = 36866, - [SMALL_STATE(838)] = 36892, - [SMALL_STATE(839)] = 36918, - [SMALL_STATE(840)] = 36952, - [SMALL_STATE(841)] = 36975, - [SMALL_STATE(842)] = 36998, - [SMALL_STATE(843)] = 37021, - [SMALL_STATE(844)] = 37042, - [SMALL_STATE(845)] = 37063, - [SMALL_STATE(846)] = 37084, - [SMALL_STATE(847)] = 37105, - [SMALL_STATE(848)] = 37128, - [SMALL_STATE(849)] = 37146, - [SMALL_STATE(850)] = 37164, - [SMALL_STATE(851)] = 37204, - [SMALL_STATE(852)] = 37222, - [SMALL_STATE(853)] = 37240, - [SMALL_STATE(854)] = 37258, - [SMALL_STATE(855)] = 37286, - [SMALL_STATE(856)] = 37326, - [SMALL_STATE(857)] = 37344, - [SMALL_STATE(858)] = 37362, - [SMALL_STATE(859)] = 37383, - [SMALL_STATE(860)] = 37400, - [SMALL_STATE(861)] = 37417, - [SMALL_STATE(862)] = 37438, - [SMALL_STATE(863)] = 37459, - [SMALL_STATE(864)] = 37478, - [SMALL_STATE(865)] = 37495, - [SMALL_STATE(866)] = 37516, - [SMALL_STATE(867)] = 37535, - [SMALL_STATE(868)] = 37554, - [SMALL_STATE(869)] = 37571, - [SMALL_STATE(870)] = 37590, - [SMALL_STATE(871)] = 37615, - [SMALL_STATE(872)] = 37631, - [SMALL_STATE(873)] = 37663, - [SMALL_STATE(874)] = 37679, - [SMALL_STATE(875)] = 37695, - [SMALL_STATE(876)] = 37711, - [SMALL_STATE(877)] = 37743, - [SMALL_STATE(878)] = 37775, - [SMALL_STATE(879)] = 37791, - [SMALL_STATE(880)] = 37815, - [SMALL_STATE(881)] = 37831, - [SMALL_STATE(882)] = 37847, - [SMALL_STATE(883)] = 37863, - [SMALL_STATE(884)] = 37879, - [SMALL_STATE(885)] = 37895, - [SMALL_STATE(886)] = 37911, - [SMALL_STATE(887)] = 37931, - [SMALL_STATE(888)] = 37963, - [SMALL_STATE(889)] = 37992, - [SMALL_STATE(890)] = 38021, - [SMALL_STATE(891)] = 38050, - [SMALL_STATE(892)] = 38079, - [SMALL_STATE(893)] = 38106, - [SMALL_STATE(894)] = 38135, - [SMALL_STATE(895)] = 38164, - [SMALL_STATE(896)] = 38191, - [SMALL_STATE(897)] = 38220, - [SMALL_STATE(898)] = 38243, - [SMALL_STATE(899)] = 38272, - [SMALL_STATE(900)] = 38287, - [SMALL_STATE(901)] = 38316, - [SMALL_STATE(902)] = 38343, - [SMALL_STATE(903)] = 38358, - [SMALL_STATE(904)] = 38377, - [SMALL_STATE(905)] = 38392, - [SMALL_STATE(906)] = 38406, - [SMALL_STATE(907)] = 38420, - [SMALL_STATE(908)] = 38438, - [SMALL_STATE(909)] = 38452, - [SMALL_STATE(910)] = 38466, - [SMALL_STATE(911)] = 38492, - [SMALL_STATE(912)] = 38506, - [SMALL_STATE(913)] = 38520, - [SMALL_STATE(914)] = 38534, - [SMALL_STATE(915)] = 38548, - [SMALL_STATE(916)] = 38562, - [SMALL_STATE(917)] = 38576, - [SMALL_STATE(918)] = 38602, - [SMALL_STATE(919)] = 38620, - [SMALL_STATE(920)] = 38638, - [SMALL_STATE(921)] = 38652, - [SMALL_STATE(922)] = 38666, - [SMALL_STATE(923)] = 38684, - [SMALL_STATE(924)] = 38708, - [SMALL_STATE(925)] = 38722, - [SMALL_STATE(926)] = 38748, - [SMALL_STATE(927)] = 38774, - [SMALL_STATE(928)] = 38800, - [SMALL_STATE(929)] = 38826, - [SMALL_STATE(930)] = 38840, - [SMALL_STATE(931)] = 38854, - [SMALL_STATE(932)] = 38868, - [SMALL_STATE(933)] = 38882, - [SMALL_STATE(934)] = 38896, - [SMALL_STATE(935)] = 38910, - [SMALL_STATE(936)] = 38924, - [SMALL_STATE(937)] = 38938, - [SMALL_STATE(938)] = 38952, - [SMALL_STATE(939)] = 38976, - [SMALL_STATE(940)] = 38990, - [SMALL_STATE(941)] = 39004, - [SMALL_STATE(942)] = 39030, - [SMALL_STATE(943)] = 39056, - [SMALL_STATE(944)] = 39070, - [SMALL_STATE(945)] = 39094, - [SMALL_STATE(946)] = 39108, - [SMALL_STATE(947)] = 39134, - [SMALL_STATE(948)] = 39160, - [SMALL_STATE(949)] = 39182, - [SMALL_STATE(950)] = 39196, - [SMALL_STATE(951)] = 39210, - [SMALL_STATE(952)] = 39224, - [SMALL_STATE(953)] = 39238, - [SMALL_STATE(954)] = 39262, - [SMALL_STATE(955)] = 39281, - [SMALL_STATE(956)] = 39304, - [SMALL_STATE(957)] = 39325, - [SMALL_STATE(958)] = 39346, - [SMALL_STATE(959)] = 39371, - [SMALL_STATE(960)] = 39396, - [SMALL_STATE(961)] = 39421, - [SMALL_STATE(962)] = 39446, - [SMALL_STATE(963)] = 39467, - [SMALL_STATE(964)] = 39490, - [SMALL_STATE(965)] = 39513, - [SMALL_STATE(966)] = 39534, - [SMALL_STATE(967)] = 39557, - [SMALL_STATE(968)] = 39580, - [SMALL_STATE(969)] = 39603, - [SMALL_STATE(970)] = 39626, - [SMALL_STATE(971)] = 39638, - [SMALL_STATE(972)] = 39650, - [SMALL_STATE(973)] = 39666, - [SMALL_STATE(974)] = 39686, - [SMALL_STATE(975)] = 39706, - [SMALL_STATE(976)] = 39728, - [SMALL_STATE(977)] = 39750, - [SMALL_STATE(978)] = 39770, - [SMALL_STATE(979)] = 39788, - [SMALL_STATE(980)] = 39800, - [SMALL_STATE(981)] = 39820, - [SMALL_STATE(982)] = 39838, - [SMALL_STATE(983)] = 39858, - [SMALL_STATE(984)] = 39880, - [SMALL_STATE(985)] = 39900, - [SMALL_STATE(986)] = 39920, - [SMALL_STATE(987)] = 39940, - [SMALL_STATE(988)] = 39958, - [SMALL_STATE(989)] = 39978, - [SMALL_STATE(990)] = 39990, - [SMALL_STATE(991)] = 40010, - [SMALL_STATE(992)] = 40027, - [SMALL_STATE(993)] = 40046, - [SMALL_STATE(994)] = 40063, - [SMALL_STATE(995)] = 40078, - [SMALL_STATE(996)] = 40093, - [SMALL_STATE(997)] = 40104, - [SMALL_STATE(998)] = 40121, - [SMALL_STATE(999)] = 40136, - [SMALL_STATE(1000)] = 40147, - [SMALL_STATE(1001)] = 40158, - [SMALL_STATE(1002)] = 40173, - [SMALL_STATE(1003)] = 40192, - [SMALL_STATE(1004)] = 40207, - [SMALL_STATE(1005)] = 40224, - [SMALL_STATE(1006)] = 40239, - [SMALL_STATE(1007)] = 40250, - [SMALL_STATE(1008)] = 40269, - [SMALL_STATE(1009)] = 40288, - [SMALL_STATE(1010)] = 40303, - [SMALL_STATE(1011)] = 40322, - [SMALL_STATE(1012)] = 40341, - [SMALL_STATE(1013)] = 40360, - [SMALL_STATE(1014)] = 40377, - [SMALL_STATE(1015)] = 40396, - [SMALL_STATE(1016)] = 40413, - [SMALL_STATE(1017)] = 40424, - [SMALL_STATE(1018)] = 40435, - [SMALL_STATE(1019)] = 40452, - [SMALL_STATE(1020)] = 40463, - [SMALL_STATE(1021)] = 40474, - [SMALL_STATE(1022)] = 40485, - [SMALL_STATE(1023)] = 40496, - [SMALL_STATE(1024)] = 40507, - [SMALL_STATE(1025)] = 40518, - [SMALL_STATE(1026)] = 40537, - [SMALL_STATE(1027)] = 40548, - [SMALL_STATE(1028)] = 40567, - [SMALL_STATE(1029)] = 40578, - [SMALL_STATE(1030)] = 40597, - [SMALL_STATE(1031)] = 40614, - [SMALL_STATE(1032)] = 40633, - [SMALL_STATE(1033)] = 40650, - [SMALL_STATE(1034)] = 40661, - [SMALL_STATE(1035)] = 40672, - [SMALL_STATE(1036)] = 40689, - [SMALL_STATE(1037)] = 40700, - [SMALL_STATE(1038)] = 40711, - [SMALL_STATE(1039)] = 40728, - [SMALL_STATE(1040)] = 40739, - [SMALL_STATE(1041)] = 40758, - [SMALL_STATE(1042)] = 40774, - [SMALL_STATE(1043)] = 40790, - [SMALL_STATE(1044)] = 40804, - [SMALL_STATE(1045)] = 40818, - [SMALL_STATE(1046)] = 40834, - [SMALL_STATE(1047)] = 40846, - [SMALL_STATE(1048)] = 40862, - [SMALL_STATE(1049)] = 40878, - [SMALL_STATE(1050)] = 40894, - [SMALL_STATE(1051)] = 40908, - [SMALL_STATE(1052)] = 40924, - [SMALL_STATE(1053)] = 40940, - [SMALL_STATE(1054)] = 40956, - [SMALL_STATE(1055)] = 40972, - [SMALL_STATE(1056)] = 40984, - [SMALL_STATE(1057)] = 41000, - [SMALL_STATE(1058)] = 41016, - [SMALL_STATE(1059)] = 41032, - [SMALL_STATE(1060)] = 41048, - [SMALL_STATE(1061)] = 41064, - [SMALL_STATE(1062)] = 41080, - [SMALL_STATE(1063)] = 41096, - [SMALL_STATE(1064)] = 41110, - [SMALL_STATE(1065)] = 41126, - [SMALL_STATE(1066)] = 41140, - [SMALL_STATE(1067)] = 41156, - [SMALL_STATE(1068)] = 41172, - [SMALL_STATE(1069)] = 41188, - [SMALL_STATE(1070)] = 41204, - [SMALL_STATE(1071)] = 41220, - [SMALL_STATE(1072)] = 41236, - [SMALL_STATE(1073)] = 41252, - [SMALL_STATE(1074)] = 41268, - [SMALL_STATE(1075)] = 41284, - [SMALL_STATE(1076)] = 41300, - [SMALL_STATE(1077)] = 41314, - [SMALL_STATE(1078)] = 41330, - [SMALL_STATE(1079)] = 41346, - [SMALL_STATE(1080)] = 41362, - [SMALL_STATE(1081)] = 41374, - [SMALL_STATE(1082)] = 41388, - [SMALL_STATE(1083)] = 41404, - [SMALL_STATE(1084)] = 41420, - [SMALL_STATE(1085)] = 41436, - [SMALL_STATE(1086)] = 41452, - [SMALL_STATE(1087)] = 41468, - [SMALL_STATE(1088)] = 41484, - [SMALL_STATE(1089)] = 41500, - [SMALL_STATE(1090)] = 41516, - [SMALL_STATE(1091)] = 41530, - [SMALL_STATE(1092)] = 41546, - [SMALL_STATE(1093)] = 41560, - [SMALL_STATE(1094)] = 41576, - [SMALL_STATE(1095)] = 41592, - [SMALL_STATE(1096)] = 41608, - [SMALL_STATE(1097)] = 41624, - [SMALL_STATE(1098)] = 41640, - [SMALL_STATE(1099)] = 41656, - [SMALL_STATE(1100)] = 41672, - [SMALL_STATE(1101)] = 41684, - [SMALL_STATE(1102)] = 41700, - [SMALL_STATE(1103)] = 41716, - [SMALL_STATE(1104)] = 41732, - [SMALL_STATE(1105)] = 41748, - [SMALL_STATE(1106)] = 41762, - [SMALL_STATE(1107)] = 41778, - [SMALL_STATE(1108)] = 41794, - [SMALL_STATE(1109)] = 41810, - [SMALL_STATE(1110)] = 41826, - [SMALL_STATE(1111)] = 41840, - [SMALL_STATE(1112)] = 41856, - [SMALL_STATE(1113)] = 41872, - [SMALL_STATE(1114)] = 41888, - [SMALL_STATE(1115)] = 41904, - [SMALL_STATE(1116)] = 41920, - [SMALL_STATE(1117)] = 41934, - [SMALL_STATE(1118)] = 41950, - [SMALL_STATE(1119)] = 41964, - [SMALL_STATE(1120)] = 41980, - [SMALL_STATE(1121)] = 41994, - [SMALL_STATE(1122)] = 42008, - [SMALL_STATE(1123)] = 42024, - [SMALL_STATE(1124)] = 42040, - [SMALL_STATE(1125)] = 42056, - [SMALL_STATE(1126)] = 42072, - [SMALL_STATE(1127)] = 42088, - [SMALL_STATE(1128)] = 42104, - [SMALL_STATE(1129)] = 42120, - [SMALL_STATE(1130)] = 42136, - [SMALL_STATE(1131)] = 42152, - [SMALL_STATE(1132)] = 42168, - [SMALL_STATE(1133)] = 42184, - [SMALL_STATE(1134)] = 42200, - [SMALL_STATE(1135)] = 42216, - [SMALL_STATE(1136)] = 42230, - [SMALL_STATE(1137)] = 42242, - [SMALL_STATE(1138)] = 42258, - [SMALL_STATE(1139)] = 42272, - [SMALL_STATE(1140)] = 42286, - [SMALL_STATE(1141)] = 42298, - [SMALL_STATE(1142)] = 42307, - [SMALL_STATE(1143)] = 42320, - [SMALL_STATE(1144)] = 42331, - [SMALL_STATE(1145)] = 42340, - [SMALL_STATE(1146)] = 42353, - [SMALL_STATE(1147)] = 42364, - [SMALL_STATE(1148)] = 42373, - [SMALL_STATE(1149)] = 42382, - [SMALL_STATE(1150)] = 42395, - [SMALL_STATE(1151)] = 42408, - [SMALL_STATE(1152)] = 42421, - [SMALL_STATE(1153)] = 42434, - [SMALL_STATE(1154)] = 42445, - [SMALL_STATE(1155)] = 42458, - [SMALL_STATE(1156)] = 42471, - [SMALL_STATE(1157)] = 42484, - [SMALL_STATE(1158)] = 42495, - [SMALL_STATE(1159)] = 42508, - [SMALL_STATE(1160)] = 42519, - [SMALL_STATE(1161)] = 42532, - [SMALL_STATE(1162)] = 42541, - [SMALL_STATE(1163)] = 42554, - [SMALL_STATE(1164)] = 42567, - [SMALL_STATE(1165)] = 42580, - [SMALL_STATE(1166)] = 42589, - [SMALL_STATE(1167)] = 42600, - [SMALL_STATE(1168)] = 42609, - [SMALL_STATE(1169)] = 42618, - [SMALL_STATE(1170)] = 42627, - [SMALL_STATE(1171)] = 42636, - [SMALL_STATE(1172)] = 42645, - [SMALL_STATE(1173)] = 42658, - [SMALL_STATE(1174)] = 42671, - [SMALL_STATE(1175)] = 42684, - [SMALL_STATE(1176)] = 42693, - [SMALL_STATE(1177)] = 42702, - [SMALL_STATE(1178)] = 42715, - [SMALL_STATE(1179)] = 42728, - [SMALL_STATE(1180)] = 42741, - [SMALL_STATE(1181)] = 42752, - [SMALL_STATE(1182)] = 42765, - [SMALL_STATE(1183)] = 42776, - [SMALL_STATE(1184)] = 42789, - [SMALL_STATE(1185)] = 42798, - [SMALL_STATE(1186)] = 42807, - [SMALL_STATE(1187)] = 42820, - [SMALL_STATE(1188)] = 42833, - [SMALL_STATE(1189)] = 42842, - [SMALL_STATE(1190)] = 42853, - [SMALL_STATE(1191)] = 42866, - [SMALL_STATE(1192)] = 42879, - [SMALL_STATE(1193)] = 42890, - [SMALL_STATE(1194)] = 42899, - [SMALL_STATE(1195)] = 42912, - [SMALL_STATE(1196)] = 42921, - [SMALL_STATE(1197)] = 42934, - [SMALL_STATE(1198)] = 42947, - [SMALL_STATE(1199)] = 42960, - [SMALL_STATE(1200)] = 42969, - [SMALL_STATE(1201)] = 42982, - [SMALL_STATE(1202)] = 42995, - [SMALL_STATE(1203)] = 43004, - [SMALL_STATE(1204)] = 43013, - [SMALL_STATE(1205)] = 43026, - [SMALL_STATE(1206)] = 43039, - [SMALL_STATE(1207)] = 43052, - [SMALL_STATE(1208)] = 43065, - [SMALL_STATE(1209)] = 43078, - [SMALL_STATE(1210)] = 43091, - [SMALL_STATE(1211)] = 43100, - [SMALL_STATE(1212)] = 43109, - [SMALL_STATE(1213)] = 43122, - [SMALL_STATE(1214)] = 43131, - [SMALL_STATE(1215)] = 43140, - [SMALL_STATE(1216)] = 43153, - [SMALL_STATE(1217)] = 43162, - [SMALL_STATE(1218)] = 43171, - [SMALL_STATE(1219)] = 43180, - [SMALL_STATE(1220)] = 43193, - [SMALL_STATE(1221)] = 43206, - [SMALL_STATE(1222)] = 43215, - [SMALL_STATE(1223)] = 43224, - [SMALL_STATE(1224)] = 43237, - [SMALL_STATE(1225)] = 43250, - [SMALL_STATE(1226)] = 43259, - [SMALL_STATE(1227)] = 43272, - [SMALL_STATE(1228)] = 43285, - [SMALL_STATE(1229)] = 43296, - [SMALL_STATE(1230)] = 43307, - [SMALL_STATE(1231)] = 43316, - [SMALL_STATE(1232)] = 43329, - [SMALL_STATE(1233)] = 43342, - [SMALL_STATE(1234)] = 43355, - [SMALL_STATE(1235)] = 43364, - [SMALL_STATE(1236)] = 43377, - [SMALL_STATE(1237)] = 43388, - [SMALL_STATE(1238)] = 43401, - [SMALL_STATE(1239)] = 43414, - [SMALL_STATE(1240)] = 43423, - [SMALL_STATE(1241)] = 43436, - [SMALL_STATE(1242)] = 43445, - [SMALL_STATE(1243)] = 43458, - [SMALL_STATE(1244)] = 43467, - [SMALL_STATE(1245)] = 43476, - [SMALL_STATE(1246)] = 43489, - [SMALL_STATE(1247)] = 43502, - [SMALL_STATE(1248)] = 43515, - [SMALL_STATE(1249)] = 43524, - [SMALL_STATE(1250)] = 43537, - [SMALL_STATE(1251)] = 43546, - [SMALL_STATE(1252)] = 43559, - [SMALL_STATE(1253)] = 43568, - [SMALL_STATE(1254)] = 43581, - [SMALL_STATE(1255)] = 43592, - [SMALL_STATE(1256)] = 43605, - [SMALL_STATE(1257)] = 43616, - [SMALL_STATE(1258)] = 43627, - [SMALL_STATE(1259)] = 43640, - [SMALL_STATE(1260)] = 43653, - [SMALL_STATE(1261)] = 43666, - [SMALL_STATE(1262)] = 43679, - [SMALL_STATE(1263)] = 43692, - [SMALL_STATE(1264)] = 43701, - [SMALL_STATE(1265)] = 43712, - [SMALL_STATE(1266)] = 43721, - [SMALL_STATE(1267)] = 43734, - [SMALL_STATE(1268)] = 43743, - [SMALL_STATE(1269)] = 43756, - [SMALL_STATE(1270)] = 43765, - [SMALL_STATE(1271)] = 43774, - [SMALL_STATE(1272)] = 43787, - [SMALL_STATE(1273)] = 43800, - [SMALL_STATE(1274)] = 43809, - [SMALL_STATE(1275)] = 43822, - [SMALL_STATE(1276)] = 43835, - [SMALL_STATE(1277)] = 43848, - [SMALL_STATE(1278)] = 43861, - [SMALL_STATE(1279)] = 43870, - [SMALL_STATE(1280)] = 43883, - [SMALL_STATE(1281)] = 43896, - [SMALL_STATE(1282)] = 43909, - [SMALL_STATE(1283)] = 43922, - [SMALL_STATE(1284)] = 43935, - [SMALL_STATE(1285)] = 43948, - [SMALL_STATE(1286)] = 43961, - [SMALL_STATE(1287)] = 43974, - [SMALL_STATE(1288)] = 43987, - [SMALL_STATE(1289)] = 44000, - [SMALL_STATE(1290)] = 44013, - [SMALL_STATE(1291)] = 44022, - [SMALL_STATE(1292)] = 44035, - [SMALL_STATE(1293)] = 44048, - [SMALL_STATE(1294)] = 44059, - [SMALL_STATE(1295)] = 44072, - [SMALL_STATE(1296)] = 44085, - [SMALL_STATE(1297)] = 44098, - [SMALL_STATE(1298)] = 44111, - [SMALL_STATE(1299)] = 44124, - [SMALL_STATE(1300)] = 44137, - [SMALL_STATE(1301)] = 44150, - [SMALL_STATE(1302)] = 44163, - [SMALL_STATE(1303)] = 44176, - [SMALL_STATE(1304)] = 44189, - [SMALL_STATE(1305)] = 44202, - [SMALL_STATE(1306)] = 44215, - [SMALL_STATE(1307)] = 44228, - [SMALL_STATE(1308)] = 44241, - [SMALL_STATE(1309)] = 44254, - [SMALL_STATE(1310)] = 44267, - [SMALL_STATE(1311)] = 44280, - [SMALL_STATE(1312)] = 44293, - [SMALL_STATE(1313)] = 44306, - [SMALL_STATE(1314)] = 44319, - [SMALL_STATE(1315)] = 44332, - [SMALL_STATE(1316)] = 44345, - [SMALL_STATE(1317)] = 44358, - [SMALL_STATE(1318)] = 44371, - [SMALL_STATE(1319)] = 44384, - [SMALL_STATE(1320)] = 44395, - [SMALL_STATE(1321)] = 44404, - [SMALL_STATE(1322)] = 44413, - [SMALL_STATE(1323)] = 44426, - [SMALL_STATE(1324)] = 44439, - [SMALL_STATE(1325)] = 44452, - [SMALL_STATE(1326)] = 44465, - [SMALL_STATE(1327)] = 44478, - [SMALL_STATE(1328)] = 44491, - [SMALL_STATE(1329)] = 44504, - [SMALL_STATE(1330)] = 44517, - [SMALL_STATE(1331)] = 44530, - [SMALL_STATE(1332)] = 44543, - [SMALL_STATE(1333)] = 44556, - [SMALL_STATE(1334)] = 44566, - [SMALL_STATE(1335)] = 44574, - [SMALL_STATE(1336)] = 44584, - [SMALL_STATE(1337)] = 44594, - [SMALL_STATE(1338)] = 44604, - [SMALL_STATE(1339)] = 44614, - [SMALL_STATE(1340)] = 44624, - [SMALL_STATE(1341)] = 44632, - [SMALL_STATE(1342)] = 44642, - [SMALL_STATE(1343)] = 44652, - [SMALL_STATE(1344)] = 44662, - [SMALL_STATE(1345)] = 44670, - [SMALL_STATE(1346)] = 44680, - [SMALL_STATE(1347)] = 44688, - [SMALL_STATE(1348)] = 44696, - [SMALL_STATE(1349)] = 44706, - [SMALL_STATE(1350)] = 44716, - [SMALL_STATE(1351)] = 44724, - [SMALL_STATE(1352)] = 44732, - [SMALL_STATE(1353)] = 44740, - [SMALL_STATE(1354)] = 44748, - [SMALL_STATE(1355)] = 44758, - [SMALL_STATE(1356)] = 44768, - [SMALL_STATE(1357)] = 44776, - [SMALL_STATE(1358)] = 44784, - [SMALL_STATE(1359)] = 44792, - [SMALL_STATE(1360)] = 44802, - [SMALL_STATE(1361)] = 44812, - [SMALL_STATE(1362)] = 44822, - [SMALL_STATE(1363)] = 44832, - [SMALL_STATE(1364)] = 44840, - [SMALL_STATE(1365)] = 44850, - [SMALL_STATE(1366)] = 44860, - [SMALL_STATE(1367)] = 44868, - [SMALL_STATE(1368)] = 44878, - [SMALL_STATE(1369)] = 44886, - [SMALL_STATE(1370)] = 44896, - [SMALL_STATE(1371)] = 44906, - [SMALL_STATE(1372)] = 44916, - [SMALL_STATE(1373)] = 44926, - [SMALL_STATE(1374)] = 44936, - [SMALL_STATE(1375)] = 44946, - [SMALL_STATE(1376)] = 44956, - [SMALL_STATE(1377)] = 44964, - [SMALL_STATE(1378)] = 44974, - [SMALL_STATE(1379)] = 44984, - [SMALL_STATE(1380)] = 44994, - [SMALL_STATE(1381)] = 45004, - [SMALL_STATE(1382)] = 45014, - [SMALL_STATE(1383)] = 45022, - [SMALL_STATE(1384)] = 45030, - [SMALL_STATE(1385)] = 45038, - [SMALL_STATE(1386)] = 45046, - [SMALL_STATE(1387)] = 45054, - [SMALL_STATE(1388)] = 45062, - [SMALL_STATE(1389)] = 45070, - [SMALL_STATE(1390)] = 45080, - [SMALL_STATE(1391)] = 45090, - [SMALL_STATE(1392)] = 45100, - [SMALL_STATE(1393)] = 45108, - [SMALL_STATE(1394)] = 45118, - [SMALL_STATE(1395)] = 45128, - [SMALL_STATE(1396)] = 45138, - [SMALL_STATE(1397)] = 45146, - [SMALL_STATE(1398)] = 45154, - [SMALL_STATE(1399)] = 45162, - [SMALL_STATE(1400)] = 45170, - [SMALL_STATE(1401)] = 45178, - [SMALL_STATE(1402)] = 45188, - [SMALL_STATE(1403)] = 45198, - [SMALL_STATE(1404)] = 45206, - [SMALL_STATE(1405)] = 45216, - [SMALL_STATE(1406)] = 45226, - [SMALL_STATE(1407)] = 45236, - [SMALL_STATE(1408)] = 45246, - [SMALL_STATE(1409)] = 45256, - [SMALL_STATE(1410)] = 45266, - [SMALL_STATE(1411)] = 45276, - [SMALL_STATE(1412)] = 45286, - [SMALL_STATE(1413)] = 45296, - [SMALL_STATE(1414)] = 45304, - [SMALL_STATE(1415)] = 45314, - [SMALL_STATE(1416)] = 45324, - [SMALL_STATE(1417)] = 45332, - [SMALL_STATE(1418)] = 45342, - [SMALL_STATE(1419)] = 45350, - [SMALL_STATE(1420)] = 45358, - [SMALL_STATE(1421)] = 45368, - [SMALL_STATE(1422)] = 45378, - [SMALL_STATE(1423)] = 45388, - [SMALL_STATE(1424)] = 45396, - [SMALL_STATE(1425)] = 45404, - [SMALL_STATE(1426)] = 45414, - [SMALL_STATE(1427)] = 45422, - [SMALL_STATE(1428)] = 45432, - [SMALL_STATE(1429)] = 45442, - [SMALL_STATE(1430)] = 45452, - [SMALL_STATE(1431)] = 45462, - [SMALL_STATE(1432)] = 45470, - [SMALL_STATE(1433)] = 45480, - [SMALL_STATE(1434)] = 45490, - [SMALL_STATE(1435)] = 45498, - [SMALL_STATE(1436)] = 45508, - [SMALL_STATE(1437)] = 45518, - [SMALL_STATE(1438)] = 45526, - [SMALL_STATE(1439)] = 45536, - [SMALL_STATE(1440)] = 45544, - [SMALL_STATE(1441)] = 45554, - [SMALL_STATE(1442)] = 45562, - [SMALL_STATE(1443)] = 45570, - [SMALL_STATE(1444)] = 45580, - [SMALL_STATE(1445)] = 45590, - [SMALL_STATE(1446)] = 45600, - [SMALL_STATE(1447)] = 45610, - [SMALL_STATE(1448)] = 45620, - [SMALL_STATE(1449)] = 45630, - [SMALL_STATE(1450)] = 45640, - [SMALL_STATE(1451)] = 45650, - [SMALL_STATE(1452)] = 45660, - [SMALL_STATE(1453)] = 45670, - [SMALL_STATE(1454)] = 45680, - [SMALL_STATE(1455)] = 45690, - [SMALL_STATE(1456)] = 45700, - [SMALL_STATE(1457)] = 45710, - [SMALL_STATE(1458)] = 45720, - [SMALL_STATE(1459)] = 45730, - [SMALL_STATE(1460)] = 45740, - [SMALL_STATE(1461)] = 45750, - [SMALL_STATE(1462)] = 45760, - [SMALL_STATE(1463)] = 45768, - [SMALL_STATE(1464)] = 45776, - [SMALL_STATE(1465)] = 45784, - [SMALL_STATE(1466)] = 45794, - [SMALL_STATE(1467)] = 45804, - [SMALL_STATE(1468)] = 45814, - [SMALL_STATE(1469)] = 45821, - [SMALL_STATE(1470)] = 45828, - [SMALL_STATE(1471)] = 45835, - [SMALL_STATE(1472)] = 45842, - [SMALL_STATE(1473)] = 45849, - [SMALL_STATE(1474)] = 45856, - [SMALL_STATE(1475)] = 45863, - [SMALL_STATE(1476)] = 45870, - [SMALL_STATE(1477)] = 45877, - [SMALL_STATE(1478)] = 45884, - [SMALL_STATE(1479)] = 45891, - [SMALL_STATE(1480)] = 45898, - [SMALL_STATE(1481)] = 45905, - [SMALL_STATE(1482)] = 45912, - [SMALL_STATE(1483)] = 45919, - [SMALL_STATE(1484)] = 45926, - [SMALL_STATE(1485)] = 45933, - [SMALL_STATE(1486)] = 45940, - [SMALL_STATE(1487)] = 45947, - [SMALL_STATE(1488)] = 45954, - [SMALL_STATE(1489)] = 45961, - [SMALL_STATE(1490)] = 45968, - [SMALL_STATE(1491)] = 45975, - [SMALL_STATE(1492)] = 45982, - [SMALL_STATE(1493)] = 45989, - [SMALL_STATE(1494)] = 45996, - [SMALL_STATE(1495)] = 46003, - [SMALL_STATE(1496)] = 46010, - [SMALL_STATE(1497)] = 46017, - [SMALL_STATE(1498)] = 46024, - [SMALL_STATE(1499)] = 46031, - [SMALL_STATE(1500)] = 46038, - [SMALL_STATE(1501)] = 46045, - [SMALL_STATE(1502)] = 46052, - [SMALL_STATE(1503)] = 46059, - [SMALL_STATE(1504)] = 46066, - [SMALL_STATE(1505)] = 46073, - [SMALL_STATE(1506)] = 46080, - [SMALL_STATE(1507)] = 46087, - [SMALL_STATE(1508)] = 46094, - [SMALL_STATE(1509)] = 46101, - [SMALL_STATE(1510)] = 46108, - [SMALL_STATE(1511)] = 46115, - [SMALL_STATE(1512)] = 46122, - [SMALL_STATE(1513)] = 46129, - [SMALL_STATE(1514)] = 46136, - [SMALL_STATE(1515)] = 46143, - [SMALL_STATE(1516)] = 46150, - [SMALL_STATE(1517)] = 46157, - [SMALL_STATE(1518)] = 46164, - [SMALL_STATE(1519)] = 46171, - [SMALL_STATE(1520)] = 46178, - [SMALL_STATE(1521)] = 46185, - [SMALL_STATE(1522)] = 46192, - [SMALL_STATE(1523)] = 46199, - [SMALL_STATE(1524)] = 46206, - [SMALL_STATE(1525)] = 46213, - [SMALL_STATE(1526)] = 46220, - [SMALL_STATE(1527)] = 46227, - [SMALL_STATE(1528)] = 46234, - [SMALL_STATE(1529)] = 46241, - [SMALL_STATE(1530)] = 46248, - [SMALL_STATE(1531)] = 46255, - [SMALL_STATE(1532)] = 46262, - [SMALL_STATE(1533)] = 46269, - [SMALL_STATE(1534)] = 46276, - [SMALL_STATE(1535)] = 46283, - [SMALL_STATE(1536)] = 46290, - [SMALL_STATE(1537)] = 46297, - [SMALL_STATE(1538)] = 46304, - [SMALL_STATE(1539)] = 46311, - [SMALL_STATE(1540)] = 46318, - [SMALL_STATE(1541)] = 46325, - [SMALL_STATE(1542)] = 46332, - [SMALL_STATE(1543)] = 46339, - [SMALL_STATE(1544)] = 46346, - [SMALL_STATE(1545)] = 46353, - [SMALL_STATE(1546)] = 46360, - [SMALL_STATE(1547)] = 46367, - [SMALL_STATE(1548)] = 46374, - [SMALL_STATE(1549)] = 46381, - [SMALL_STATE(1550)] = 46388, - [SMALL_STATE(1551)] = 46395, - [SMALL_STATE(1552)] = 46402, - [SMALL_STATE(1553)] = 46409, - [SMALL_STATE(1554)] = 46416, - [SMALL_STATE(1555)] = 46423, - [SMALL_STATE(1556)] = 46430, - [SMALL_STATE(1557)] = 46437, - [SMALL_STATE(1558)] = 46444, - [SMALL_STATE(1559)] = 46451, - [SMALL_STATE(1560)] = 46458, - [SMALL_STATE(1561)] = 46465, - [SMALL_STATE(1562)] = 46472, - [SMALL_STATE(1563)] = 46479, - [SMALL_STATE(1564)] = 46486, - [SMALL_STATE(1565)] = 46493, - [SMALL_STATE(1566)] = 46500, - [SMALL_STATE(1567)] = 46507, - [SMALL_STATE(1568)] = 46514, - [SMALL_STATE(1569)] = 46521, - [SMALL_STATE(1570)] = 46528, - [SMALL_STATE(1571)] = 46535, - [SMALL_STATE(1572)] = 46542, - [SMALL_STATE(1573)] = 46549, - [SMALL_STATE(1574)] = 46556, - [SMALL_STATE(1575)] = 46563, - [SMALL_STATE(1576)] = 46570, - [SMALL_STATE(1577)] = 46577, - [SMALL_STATE(1578)] = 46584, - [SMALL_STATE(1579)] = 46591, - [SMALL_STATE(1580)] = 46598, - [SMALL_STATE(1581)] = 46605, - [SMALL_STATE(1582)] = 46612, - [SMALL_STATE(1583)] = 46619, - [SMALL_STATE(1584)] = 46626, - [SMALL_STATE(1585)] = 46633, - [SMALL_STATE(1586)] = 46640, - [SMALL_STATE(1587)] = 46647, - [SMALL_STATE(1588)] = 46654, - [SMALL_STATE(1589)] = 46661, - [SMALL_STATE(1590)] = 46668, - [SMALL_STATE(1591)] = 46675, - [SMALL_STATE(1592)] = 46682, - [SMALL_STATE(1593)] = 46689, - [SMALL_STATE(1594)] = 46696, - [SMALL_STATE(1595)] = 46703, - [SMALL_STATE(1596)] = 46710, - [SMALL_STATE(1597)] = 46717, - [SMALL_STATE(1598)] = 46724, - [SMALL_STATE(1599)] = 46731, - [SMALL_STATE(1600)] = 46738, - [SMALL_STATE(1601)] = 46745, - [SMALL_STATE(1602)] = 46752, - [SMALL_STATE(1603)] = 46759, - [SMALL_STATE(1604)] = 46766, - [SMALL_STATE(1605)] = 46773, - [SMALL_STATE(1606)] = 46780, - [SMALL_STATE(1607)] = 46787, - [SMALL_STATE(1608)] = 46794, - [SMALL_STATE(1609)] = 46801, - [SMALL_STATE(1610)] = 46808, - [SMALL_STATE(1611)] = 46815, - [SMALL_STATE(1612)] = 46822, - [SMALL_STATE(1613)] = 46829, - [SMALL_STATE(1614)] = 46836, - [SMALL_STATE(1615)] = 46843, - [SMALL_STATE(1616)] = 46850, - [SMALL_STATE(1617)] = 46857, - [SMALL_STATE(1618)] = 46864, - [SMALL_STATE(1619)] = 46871, - [SMALL_STATE(1620)] = 46878, - [SMALL_STATE(1621)] = 46885, - [SMALL_STATE(1622)] = 46892, - [SMALL_STATE(1623)] = 46899, - [SMALL_STATE(1624)] = 46906, - [SMALL_STATE(1625)] = 46913, - [SMALL_STATE(1626)] = 46920, - [SMALL_STATE(1627)] = 46927, - [SMALL_STATE(1628)] = 46934, - [SMALL_STATE(1629)] = 46941, - [SMALL_STATE(1630)] = 46948, + [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[] = { @@ -67638,1729 +68153,1742 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(1489), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [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(1343), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [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(484), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [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(867), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [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(77), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(129), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(44), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [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 = true}}, SHIFT(25), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [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_delim_token_tree, 3, 0, 0), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(67), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(98), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1349), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(114), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(472), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(200), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(484), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(428), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(126), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1354), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(127), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(480), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1584), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(475), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(141), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(411), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1583), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1507), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 87), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 87), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), + [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_impl_item, 7, 0, 114), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), + [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_extern_type, 6, 0, 105), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(965), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(957), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(122), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(666), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(244), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(927), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3538] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [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